diff --git a/grammar.js b/grammar.js index 057b6d64..117adb4f 100644 --- a/grammar.js +++ b/grammar.js @@ -575,6 +575,7 @@ module.exports = grammar({ '_Atomic', '_Noreturn', 'noreturn', + '_Nonnull', $.alignas_qualifier, ), diff --git a/src/grammar.json b/src/grammar.json index d32c70f7..f3e647bc 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4666,6 +4666,10 @@ "type": "STRING", "value": "noreturn" }, + { + "type": "STRING", + "value": "_Nonnull" + }, { "type": "SYMBOL", "name": "alignas_qualifier" diff --git a/src/node-types.json b/src/node-types.json index fc27d765..3bc655bf 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4185,6 +4185,10 @@ "type": "_Generic", "named": false }, + { + "type": "_Nonnull", + "named": false + }, { "type": "_Noreturn", "named": false diff --git a/src/parser.c b/src/parser.c index 2a674ce4..e99adf84 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,10 +14,10 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 1981 -#define LARGE_STATE_COUNT 446 -#define SYMBOL_COUNT 355 +#define LARGE_STATE_COUNT 452 +#define SYMBOL_COUNT 356 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 157 +#define TOKEN_COUNT 158 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -112,275 +112,276 @@ enum ts_symbol_identifiers { anon_sym__Atomic = 86, anon_sym__Noreturn = 87, anon_sym_noreturn = 88, - anon_sym_alignas = 89, - anon_sym__Alignas = 90, - sym_primitive_type = 91, - anon_sym_enum = 92, - anon_sym_COLON = 93, - anon_sym_struct = 94, - anon_sym_union = 95, - anon_sym_if = 96, - anon_sym_else = 97, - anon_sym_switch = 98, - anon_sym_case = 99, - anon_sym_default = 100, - anon_sym_while = 101, - anon_sym_do = 102, - anon_sym_for = 103, - anon_sym_return = 104, - anon_sym_break = 105, - anon_sym_continue = 106, - anon_sym_goto = 107, - anon_sym___try = 108, - anon_sym___except = 109, - anon_sym___finally = 110, - anon_sym___leave = 111, - anon_sym_QMARK = 112, - anon_sym_STAR_EQ = 113, - anon_sym_SLASH_EQ = 114, - anon_sym_PERCENT_EQ = 115, - anon_sym_PLUS_EQ = 116, - anon_sym_DASH_EQ = 117, - anon_sym_LT_LT_EQ = 118, - anon_sym_GT_GT_EQ = 119, - anon_sym_AMP_EQ = 120, - anon_sym_CARET_EQ = 121, - anon_sym_PIPE_EQ = 122, - anon_sym_DASH_DASH = 123, - anon_sym_PLUS_PLUS = 124, - anon_sym_sizeof = 125, - anon_sym___alignof__ = 126, - anon_sym___alignof = 127, - anon_sym__alignof = 128, - anon_sym_alignof = 129, - anon_sym__Alignof = 130, - anon_sym_offsetof = 131, - anon_sym__Generic = 132, - anon_sym_asm = 133, - anon_sym___asm__ = 134, - anon_sym_DOT = 135, - anon_sym_DASH_GT = 136, - sym_number_literal = 137, - anon_sym_L_SQUOTE = 138, - anon_sym_u_SQUOTE = 139, - anon_sym_U_SQUOTE = 140, - anon_sym_u8_SQUOTE = 141, - anon_sym_SQUOTE = 142, - aux_sym_char_literal_token1 = 143, - anon_sym_L_DQUOTE = 144, - anon_sym_u_DQUOTE = 145, - anon_sym_U_DQUOTE = 146, - anon_sym_u8_DQUOTE = 147, - anon_sym_DQUOTE = 148, - aux_sym_string_literal_token1 = 149, - sym_escape_sequence = 150, - sym_system_lib_string = 151, - sym_true = 152, - sym_false = 153, - anon_sym_NULL = 154, - anon_sym_nullptr = 155, - sym_comment = 156, - sym_translation_unit = 157, - sym__top_level_item = 158, - sym__block_item = 159, - sym_preproc_include = 160, - sym_preproc_def = 161, - sym_preproc_function_def = 162, - sym_preproc_params = 163, - sym_preproc_call = 164, - sym_preproc_if = 165, - sym_preproc_ifdef = 166, - sym_preproc_else = 167, - sym_preproc_elif = 168, - sym_preproc_elifdef = 169, - sym_preproc_if_in_field_declaration_list = 170, - sym_preproc_ifdef_in_field_declaration_list = 171, - sym_preproc_else_in_field_declaration_list = 172, - sym_preproc_elif_in_field_declaration_list = 173, - sym_preproc_elifdef_in_field_declaration_list = 174, - sym_preproc_if_in_enumerator_list = 175, - sym_preproc_ifdef_in_enumerator_list = 176, - sym_preproc_else_in_enumerator_list = 177, - sym_preproc_elif_in_enumerator_list = 178, - sym_preproc_elifdef_in_enumerator_list = 179, - sym_preproc_if_in_enumerator_list_no_comma = 180, - sym_preproc_ifdef_in_enumerator_list_no_comma = 181, - sym_preproc_else_in_enumerator_list_no_comma = 182, - sym_preproc_elif_in_enumerator_list_no_comma = 183, - sym_preproc_elifdef_in_enumerator_list_no_comma = 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_type_definition = 195, - sym__type_definition_type = 196, - sym__type_definition_declarators = 197, - sym__declaration_modifiers = 198, - sym__declaration_specifiers = 199, - sym_linkage_specification = 200, - sym_attribute_specifier = 201, - sym_attribute = 202, - sym_attribute_declaration = 203, - sym_ms_declspec_modifier = 204, - sym_ms_based_modifier = 205, - sym_ms_call_modifier = 206, - sym_ms_unaligned_ptr_modifier = 207, - sym_ms_pointer_modifier = 208, - sym_declaration_list = 209, - sym__declarator = 210, - sym__declaration_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_declaration_declarator = 227, - sym_function_field_declarator = 228, - sym_function_type_declarator = 229, - sym_abstract_function_declarator = 230, - sym__old_style_function_declarator = 231, - sym_array_declarator = 232, - sym_array_field_declarator = 233, - sym_array_type_declarator = 234, - sym_abstract_array_declarator = 235, - sym_init_declarator = 236, - sym_compound_statement = 237, - sym_storage_class_specifier = 238, - sym_type_qualifier = 239, - sym_alignas_qualifier = 240, - sym_type_specifier = 241, - sym_sized_type_specifier = 242, - sym_enum_specifier = 243, - sym_enumerator_list = 244, - sym_struct_specifier = 245, - sym_union_specifier = 246, - sym_field_declaration_list = 247, - sym__field_declaration_list_item = 248, - sym_field_declaration = 249, - sym__field_declaration_declarator = 250, - sym_bitfield_clause = 251, - sym_enumerator = 252, - sym_variadic_parameter = 253, - sym_parameter_list = 254, - sym__old_style_parameter_list = 255, - sym_parameter_declaration = 256, - sym_attributed_statement = 257, - sym_statement = 258, - sym__top_level_statement = 259, - sym_labeled_statement = 260, - sym__top_level_expression_statement = 261, - sym_expression_statement = 262, - sym_if_statement = 263, - sym_else_clause = 264, - sym_switch_statement = 265, - sym_case_statement = 266, - sym_while_statement = 267, - sym_do_statement = 268, - sym_for_statement = 269, - sym__for_statement_body = 270, - sym_return_statement = 271, - sym_break_statement = 272, - sym_continue_statement = 273, - sym_goto_statement = 274, - sym_seh_try_statement = 275, - sym_seh_except_clause = 276, - sym_seh_finally_clause = 277, - sym_seh_leave_statement = 278, - sym_expression = 279, - sym__string = 280, - sym_comma_expression = 281, - sym_conditional_expression = 282, - sym_assignment_expression = 283, - sym_pointer_expression = 284, - sym_unary_expression = 285, - sym_binary_expression = 286, - sym_update_expression = 287, - sym_cast_expression = 288, - sym_type_descriptor = 289, - sym_sizeof_expression = 290, - sym_alignof_expression = 291, - sym_offsetof_expression = 292, - sym_generic_expression = 293, - sym_subscript_expression = 294, - sym_call_expression = 295, - sym_gnu_asm_expression = 296, - sym_gnu_asm_qualifier = 297, - sym_gnu_asm_output_operand_list = 298, - sym_gnu_asm_output_operand = 299, - sym_gnu_asm_input_operand_list = 300, - sym_gnu_asm_input_operand = 301, - sym_gnu_asm_clobber_list = 302, - sym_gnu_asm_goto_list = 303, - sym_argument_list = 304, - sym_field_expression = 305, - sym_compound_literal_expression = 306, - sym_parenthesized_expression = 307, - sym_initializer_list = 308, - sym_initializer_pair = 309, - sym_subscript_designator = 310, - sym_subscript_range_designator = 311, - sym_field_designator = 312, - sym_char_literal = 313, - sym_concatenated_string = 314, - sym_string_literal = 315, - sym_null = 316, - sym__empty_declaration = 317, - sym_macro_type_specifier = 318, - aux_sym_translation_unit_repeat1 = 319, - aux_sym_preproc_params_repeat1 = 320, - aux_sym_preproc_if_repeat1 = 321, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 322, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 323, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 324, - aux_sym_preproc_argument_list_repeat1 = 325, - aux_sym__old_style_function_definition_repeat1 = 326, - aux_sym_declaration_repeat1 = 327, - aux_sym_type_definition_repeat1 = 328, - aux_sym__type_definition_type_repeat1 = 329, - aux_sym__type_definition_declarators_repeat1 = 330, - aux_sym__declaration_specifiers_repeat1 = 331, - aux_sym_attribute_declaration_repeat1 = 332, - aux_sym_attributed_declarator_repeat1 = 333, - aux_sym_pointer_declarator_repeat1 = 334, - aux_sym_function_declarator_repeat1 = 335, - aux_sym_array_declarator_repeat1 = 336, - aux_sym_sized_type_specifier_repeat1 = 337, - aux_sym_enumerator_list_repeat1 = 338, - aux_sym__field_declaration_declarator_repeat1 = 339, - aux_sym_parameter_list_repeat1 = 340, - aux_sym__old_style_parameter_list_repeat1 = 341, - aux_sym_case_statement_repeat1 = 342, - aux_sym_generic_expression_repeat1 = 343, - aux_sym_gnu_asm_expression_repeat1 = 344, - aux_sym_gnu_asm_output_operand_list_repeat1 = 345, - aux_sym_gnu_asm_input_operand_list_repeat1 = 346, - aux_sym_gnu_asm_clobber_list_repeat1 = 347, - aux_sym_gnu_asm_goto_list_repeat1 = 348, - aux_sym_argument_list_repeat1 = 349, - aux_sym_initializer_list_repeat1 = 350, - aux_sym_initializer_pair_repeat1 = 351, - aux_sym_char_literal_repeat1 = 352, - aux_sym_concatenated_string_repeat1 = 353, - aux_sym_string_literal_repeat1 = 354, - alias_sym_field_identifier = 355, - alias_sym_statement_identifier = 356, - alias_sym_type_identifier = 357, + anon_sym__Nonnull = 89, + anon_sym_alignas = 90, + anon_sym__Alignas = 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__top_level_item = 159, + sym__block_item = 160, + sym_preproc_include = 161, + sym_preproc_def = 162, + sym_preproc_function_def = 163, + sym_preproc_params = 164, + sym_preproc_call = 165, + sym_preproc_if = 166, + sym_preproc_ifdef = 167, + sym_preproc_else = 168, + sym_preproc_elif = 169, + sym_preproc_elifdef = 170, + sym_preproc_if_in_field_declaration_list = 171, + sym_preproc_ifdef_in_field_declaration_list = 172, + sym_preproc_else_in_field_declaration_list = 173, + sym_preproc_elif_in_field_declaration_list = 174, + sym_preproc_elifdef_in_field_declaration_list = 175, + sym_preproc_if_in_enumerator_list = 176, + sym_preproc_ifdef_in_enumerator_list = 177, + sym_preproc_else_in_enumerator_list = 178, + sym_preproc_elif_in_enumerator_list = 179, + sym_preproc_elifdef_in_enumerator_list = 180, + sym_preproc_if_in_enumerator_list_no_comma = 181, + sym_preproc_ifdef_in_enumerator_list_no_comma = 182, + sym_preproc_else_in_enumerator_list_no_comma = 183, + sym_preproc_elif_in_enumerator_list_no_comma = 184, + sym_preproc_elifdef_in_enumerator_list_no_comma = 185, + sym__preproc_expression = 186, + sym_preproc_parenthesized_expression = 187, + sym_preproc_defined = 188, + sym_preproc_unary_expression = 189, + sym_preproc_call_expression = 190, + sym_preproc_argument_list = 191, + sym_preproc_binary_expression = 192, + sym_function_definition = 193, + sym__old_style_function_definition = 194, + sym_declaration = 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__declaration_declarator = 212, + sym__field_declarator = 213, + sym__type_declarator = 214, + sym__abstract_declarator = 215, + sym_parenthesized_declarator = 216, + sym_parenthesized_field_declarator = 217, + sym_parenthesized_type_declarator = 218, + sym_abstract_parenthesized_declarator = 219, + sym_attributed_declarator = 220, + sym_attributed_field_declarator = 221, + sym_attributed_type_declarator = 222, + sym_pointer_declarator = 223, + sym_pointer_field_declarator = 224, + sym_pointer_type_declarator = 225, + sym_abstract_pointer_declarator = 226, + sym_function_declarator = 227, + sym__function_declaration_declarator = 228, + sym_function_field_declarator = 229, + sym_function_type_declarator = 230, + sym_abstract_function_declarator = 231, + sym__old_style_function_declarator = 232, + sym_array_declarator = 233, + sym_array_field_declarator = 234, + sym_array_type_declarator = 235, + sym_abstract_array_declarator = 236, + sym_init_declarator = 237, + sym_compound_statement = 238, + sym_storage_class_specifier = 239, + sym_type_qualifier = 240, + sym_alignas_qualifier = 241, + sym_type_specifier = 242, + sym_sized_type_specifier = 243, + sym_enum_specifier = 244, + sym_enumerator_list = 245, + sym_struct_specifier = 246, + sym_union_specifier = 247, + sym_field_declaration_list = 248, + sym__field_declaration_list_item = 249, + sym_field_declaration = 250, + sym__field_declaration_declarator = 251, + sym_bitfield_clause = 252, + sym_enumerator = 253, + sym_variadic_parameter = 254, + sym_parameter_list = 255, + sym__old_style_parameter_list = 256, + sym_parameter_declaration = 257, + sym_attributed_statement = 258, + sym_statement = 259, + sym__top_level_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__string = 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_argument_list_repeat1 = 326, + aux_sym__old_style_function_definition_repeat1 = 327, + aux_sym_declaration_repeat1 = 328, + aux_sym_type_definition_repeat1 = 329, + aux_sym__type_definition_type_repeat1 = 330, + aux_sym__type_definition_declarators_repeat1 = 331, + aux_sym__declaration_specifiers_repeat1 = 332, + aux_sym_attribute_declaration_repeat1 = 333, + aux_sym_attributed_declarator_repeat1 = 334, + aux_sym_pointer_declarator_repeat1 = 335, + aux_sym_function_declarator_repeat1 = 336, + aux_sym_array_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[] = { @@ -473,6 +474,7 @@ static const char * const ts_symbol_names[] = { [anon_sym__Atomic] = "_Atomic", [anon_sym__Noreturn] = "_Noreturn", [anon_sym_noreturn] = "noreturn", + [anon_sym__Nonnull] = "_Nonnull", [anon_sym_alignas] = "alignas", [anon_sym__Alignas] = "_Alignas", [sym_primitive_type] = "primitive_type", @@ -834,6 +836,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym__Atomic] = anon_sym__Atomic, [anon_sym__Noreturn] = anon_sym__Noreturn, [anon_sym_noreturn] = anon_sym_noreturn, + [anon_sym__Nonnull] = anon_sym__Nonnull, [anon_sym_alignas] = anon_sym_alignas, [anon_sym__Alignas] = anon_sym__Alignas, [sym_primitive_type] = sym_primitive_type, @@ -1462,6 +1465,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym__Nonnull] = { + .visible = true, + .named = false, + }, [anon_sym_alignas] = { .visible = true, .named = false, @@ -3270,13 +3277,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [51] = 49, [52] = 47, [53] = 46, - [54] = 46, - [55] = 45, + [54] = 45, + [55] = 48, [56] = 45, [57] = 49, - [58] = 48, - [59] = 48, - [60] = 47, + [58] = 46, + [59] = 47, + [60] = 48, [61] = 45, [62] = 49, [63] = 46, @@ -3296,14 +3303,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [77] = 77, [78] = 78, [79] = 79, - [80] = 76, + [80] = 80, [81] = 81, [82] = 82, [83] = 83, [84] = 84, [85] = 85, [86] = 86, - [87] = 87, + [87] = 86, [88] = 88, [89] = 89, [90] = 90, @@ -3325,10 +3332,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [106] = 106, [107] = 107, [108] = 108, - [109] = 81, + [109] = 109, [110] = 110, [111] = 111, - [112] = 112, + [112] = 78, [113] = 113, [114] = 114, [115] = 115, @@ -3362,273 +3369,273 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [143] = 75, [144] = 75, [145] = 75, - [146] = 78, - [147] = 110, - [148] = 112, - [149] = 82, - [150] = 82, - [151] = 83, - [152] = 84, - [153] = 111, - [154] = 84, - [155] = 86, - [156] = 85, - [157] = 86, - [158] = 87, - [159] = 88, - [160] = 89, - [161] = 90, - [162] = 91, - [163] = 111, - [164] = 112, - [165] = 113, - [166] = 93, - [167] = 87, - [168] = 88, - [169] = 94, - [170] = 95, - [171] = 96, - [172] = 97, - [173] = 98, - [174] = 99, - [175] = 100, - [176] = 101, - [177] = 102, - [178] = 103, - [179] = 104, - [180] = 106, - [181] = 107, - [182] = 108, - [183] = 77, - [184] = 92, - [185] = 81, - [186] = 105, - [187] = 110, - [188] = 111, - [189] = 112, - [190] = 77, - [191] = 78, - [192] = 79, - [193] = 76, - [194] = 82, - [195] = 77, - [196] = 105, - [197] = 83, - [198] = 84, - [199] = 85, - [200] = 86, - [201] = 89, - [202] = 90, - [203] = 91, - [204] = 89, - [205] = 96, - [206] = 97, - [207] = 98, - [208] = 99, - [209] = 100, - [210] = 101, - [211] = 106, - [212] = 107, - [213] = 87, - [214] = 88, - [215] = 113, - [216] = 93, - [217] = 94, - [218] = 95, - [219] = 102, - [220] = 103, - [221] = 104, - [222] = 108, - [223] = 90, - [224] = 91, - [225] = 92, - [226] = 113, - [227] = 93, - [228] = 94, - [229] = 95, - [230] = 110, - [231] = 96, - [232] = 97, - [233] = 98, - [234] = 99, - [235] = 100, - [236] = 101, - [237] = 102, - [238] = 103, - [239] = 104, - [240] = 79, - [241] = 106, - [242] = 107, - [243] = 108, - [244] = 92, - [245] = 81, - [246] = 83, - [247] = 105, - [248] = 78, - [249] = 79, - [250] = 76, - [251] = 85, - [252] = 134, - [253] = 120, - [254] = 139, - [255] = 130, - [256] = 131, - [257] = 114, - [258] = 121, - [259] = 142, - [260] = 140, - [261] = 133, - [262] = 137, - [263] = 125, - [264] = 115, - [265] = 118, - [266] = 125, - [267] = 122, - [268] = 124, - [269] = 129, - [270] = 134, - [271] = 136, - [272] = 115, - [273] = 135, - [274] = 126, - [275] = 139, + [146] = 90, + [147] = 85, + [148] = 86, + [149] = 85, + [150] = 80, + [151] = 88, + [152] = 81, + [153] = 82, + [154] = 89, + [155] = 91, + [156] = 92, + [157] = 81, + [158] = 93, + [159] = 89, + [160] = 90, + [161] = 94, + [162] = 113, + [163] = 76, + [164] = 95, + [165] = 83, + [166] = 88, + [167] = 96, + [168] = 97, + [169] = 91, + [170] = 92, + [171] = 98, + [172] = 99, + [173] = 100, + [174] = 101, + [175] = 102, + [176] = 103, + [177] = 104, + [178] = 105, + [179] = 106, + [180] = 107, + [181] = 108, + [182] = 109, + [183] = 110, + [184] = 111, + [185] = 77, + [186] = 78, + [187] = 79, + [188] = 93, + [189] = 80, + [190] = 81, + [191] = 82, + [192] = 83, + [193] = 84, + [194] = 85, + [195] = 86, + [196] = 84, + [197] = 94, + [198] = 82, + [199] = 89, + [200] = 90, + [201] = 91, + [202] = 92, + [203] = 113, + [204] = 76, + [205] = 95, + [206] = 83, + [207] = 100, + [208] = 101, + [209] = 102, + [210] = 103, + [211] = 104, + [212] = 105, + [213] = 109, + [214] = 110, + [215] = 93, + [216] = 94, + [217] = 96, + [218] = 97, + [219] = 98, + [220] = 99, + [221] = 106, + [222] = 107, + [223] = 108, + [224] = 111, + [225] = 113, + [226] = 76, + [227] = 95, + [228] = 79, + [229] = 96, + [230] = 97, + [231] = 98, + [232] = 99, + [233] = 100, + [234] = 101, + [235] = 102, + [236] = 103, + [237] = 104, + [238] = 105, + [239] = 106, + [240] = 107, + [241] = 108, + [242] = 77, + [243] = 109, + [244] = 110, + [245] = 111, + [246] = 77, + [247] = 78, + [248] = 80, + [249] = 84, + [250] = 79, + [251] = 88, + [252] = 141, + [253] = 127, + [254] = 125, + [255] = 119, + [256] = 120, + [257] = 121, + [258] = 135, + [259] = 134, + [260] = 137, + [261] = 122, + [262] = 123, + [263] = 142, + [264] = 116, + [265] = 128, + [266] = 129, + [267] = 130, + [268] = 121, + [269] = 124, + [270] = 118, + [271] = 114, + [272] = 129, + [273] = 115, + [274] = 125, + [275] = 140, [276] = 127, - [277] = 128, - [278] = 122, - [279] = 118, - [280] = 119, - [281] = 130, - [282] = 131, - [283] = 114, - [284] = 138, - [285] = 142, - [286] = 123, - [287] = 126, - [288] = 127, - [289] = 128, - [290] = 141, + [277] = 130, + [278] = 115, + [279] = 116, + [280] = 136, + [281] = 131, + [282] = 132, + [283] = 139, + [284] = 133, + [285] = 114, + [286] = 135, + [287] = 134, + [288] = 118, + [289] = 126, + [290] = 131, [291] = 132, - [292] = 123, - [293] = 116, - [294] = 117, + [292] = 133, + [293] = 137, + [294] = 138, [295] = 138, - [296] = 135, - [297] = 141, - [298] = 116, - [299] = 140, + [296] = 117, + [297] = 128, + [298] = 126, + [299] = 136, [300] = 117, - [301] = 119, - [302] = 120, - [303] = 121, - [304] = 137, - [305] = 136, - [306] = 129, - [307] = 133, + [301] = 142, + [302] = 119, + [303] = 120, + [304] = 139, + [305] = 122, + [306] = 140, + [307] = 123, [308] = 124, - [309] = 132, - [310] = 137, - [311] = 311, - [312] = 311, - [313] = 140, - [314] = 314, + [309] = 141, + [310] = 128, + [311] = 142, + [312] = 312, + [313] = 312, + [314] = 140, [315] = 315, - [316] = 316, + [316] = 114, [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 315, - [323] = 317, - [324] = 318, - [325] = 319, - [326] = 320, - [327] = 315, - [328] = 317, - [329] = 321, - [330] = 316, - [331] = 316, - [332] = 319, - [333] = 320, - [334] = 315, - [335] = 317, - [336] = 314, - [337] = 316, - [338] = 314, - [339] = 318, - [340] = 319, - [341] = 320, - [342] = 315, - [343] = 317, - [344] = 319, - [345] = 314, - [346] = 316, - [347] = 318, - [348] = 318, - [349] = 320, - [350] = 314, - [351] = 321, - [352] = 321, - [353] = 353, - [354] = 121, - [355] = 124, - [356] = 130, - [357] = 131, - [358] = 114, - [359] = 125, - [360] = 129, - [361] = 133, - [362] = 127, - [363] = 128, - [364] = 134, - [365] = 132, - [366] = 366, - [367] = 136, - [368] = 115, - [369] = 126, - [370] = 118, - [371] = 135, - [372] = 122, - [373] = 141, - [374] = 116, - [375] = 117, - [376] = 142, - [377] = 119, - [378] = 120, - [379] = 379, - [380] = 123, - [381] = 311, + [318] = 136, + [319] = 117, + [320] = 119, + [321] = 120, + [322] = 121, + [323] = 122, + [324] = 123, + [325] = 124, + [326] = 127, + [327] = 135, + [328] = 134, + [329] = 137, + [330] = 330, + [331] = 115, + [332] = 116, + [333] = 125, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 330, + [339] = 339, + [340] = 335, + [341] = 336, + [342] = 342, + [343] = 118, + [344] = 344, + [345] = 344, + [346] = 335, + [347] = 336, + [348] = 337, + [349] = 330, + [350] = 126, + [351] = 315, + [352] = 317, + [353] = 335, + [354] = 336, + [355] = 337, + [356] = 330, + [357] = 129, + [358] = 315, + [359] = 315, + [360] = 317, + [361] = 130, + [362] = 131, + [363] = 344, + [364] = 317, + [365] = 335, + [366] = 336, + [367] = 337, + [368] = 330, + [369] = 369, + [370] = 132, + [371] = 133, + [372] = 315, + [373] = 317, + [374] = 344, + [375] = 138, + [376] = 344, + [377] = 337, + [378] = 334, + [379] = 334, + [380] = 334, + [381] = 312, [382] = 382, - [383] = 382, - [384] = 384, - [385] = 382, - [386] = 384, - [387] = 384, - [388] = 382, + [383] = 383, + [384] = 383, + [385] = 383, + [386] = 382, + [387] = 382, + [388] = 383, [389] = 382, - [390] = 384, - [391] = 384, + [390] = 383, + [391] = 382, [392] = 382, - [393] = 384, + [393] = 383, [394] = 394, [395] = 394, [396] = 396, [397] = 397, - [398] = 311, - [399] = 311, - [400] = 75, + [398] = 75, + [399] = 312, + [400] = 312, [401] = 401, [402] = 401, - [403] = 401, + [403] = 403, [404] = 401, [405] = 401, - [406] = 406, + [406] = 401, [407] = 401, [408] = 401, [409] = 401, [410] = 410, [411] = 411, - [412] = 311, + [412] = 312, [413] = 413, [414] = 414, [415] = 415, @@ -3643,77 +3650,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [424] = 424, [425] = 425, [426] = 426, - [427] = 427, + [427] = 424, [428] = 428, - [429] = 429, + [429] = 426, [430] = 430, - [431] = 428, - [432] = 427, - [433] = 433, - [434] = 426, - [435] = 429, - [436] = 428, - [437] = 429, - [438] = 426, - [439] = 427, + [431] = 431, + [432] = 428, + [433] = 426, + [434] = 424, + [435] = 430, + [436] = 430, + [437] = 437, + [438] = 428, + [439] = 439, [440] = 440, [441] = 441, [442] = 442, [443] = 443, [444] = 444, [445] = 445, - [446] = 445, - [447] = 447, + [446] = 443, + [447] = 443, [448] = 448, - [449] = 445, + [449] = 449, [450] = 450, [451] = 451, [452] = 452, [453] = 452, [454] = 454, [455] = 455, - [456] = 456, - [457] = 456, - [458] = 458, - [459] = 459, - [460] = 456, + [456] = 455, + [457] = 455, + [458] = 455, + [459] = 410, + [460] = 460, [461] = 461, [462] = 462, [463] = 463, [464] = 464, - [465] = 461, - [466] = 461, + [465] = 465, + [466] = 466, [467] = 467, - [468] = 455, - [469] = 469, - [470] = 455, - [471] = 467, - [472] = 472, + [468] = 465, + [469] = 462, + [470] = 462, + [471] = 471, + [472] = 461, [473] = 473, - [474] = 467, - [475] = 455, - [476] = 456, + [474] = 462, + [475] = 475, + [476] = 461, [477] = 461, - [478] = 456, - [479] = 461, - [480] = 410, - [481] = 481, - [482] = 482, - [483] = 461, - [484] = 456, + [478] = 478, + [479] = 479, + [480] = 465, + [481] = 462, + [482] = 465, + [483] = 465, + [484] = 462, [485] = 485, - [486] = 467, + [486] = 465, [487] = 487, [488] = 488, [489] = 489, [490] = 490, - [491] = 488, + [491] = 491, [492] = 492, [493] = 493, [494] = 494, [495] = 495, [496] = 496, - [497] = 497, + [497] = 495, [498] = 498, [499] = 499, [500] = 500, @@ -3721,117 +3728,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [502] = 502, [503] = 503, [504] = 504, - [505] = 503, + [505] = 505, [506] = 506, [507] = 507, [508] = 508, [509] = 509, [510] = 510, - [511] = 511, + [511] = 502, [512] = 512, [513] = 513, [514] = 514, - [515] = 514, - [516] = 516, - [517] = 517, + [515] = 515, + [516] = 506, + [517] = 514, [518] = 518, [519] = 519, - [520] = 506, - [521] = 504, - [522] = 503, - [523] = 506, + [520] = 501, + [521] = 503, + [522] = 504, + [523] = 523, [524] = 524, - [525] = 507, - [526] = 508, - [527] = 509, - [528] = 510, - [529] = 511, - [530] = 512, - [531] = 524, + [525] = 525, + [526] = 502, + [527] = 513, + [528] = 506, + [529] = 529, + [530] = 513, + [531] = 529, [532] = 532, - [533] = 501, - [534] = 534, + [533] = 533, + [534] = 505, [535] = 535, - [536] = 517, + [536] = 518, [537] = 537, - [538] = 534, - [539] = 535, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 507, - [544] = 502, - [545] = 545, - [546] = 546, - [547] = 508, - [548] = 509, - [549] = 537, - [550] = 501, - [551] = 503, - [552] = 537, - [553] = 501, - [554] = 510, - [555] = 534, - [556] = 535, - [557] = 504, - [558] = 503, - [559] = 506, - [560] = 524, - [561] = 507, - [562] = 508, - [563] = 509, - [564] = 513, - [565] = 510, - [566] = 511, - [567] = 502, - [568] = 504, - [569] = 503, - [570] = 506, - [571] = 524, - [572] = 507, - [573] = 508, - [574] = 509, - [575] = 510, - [576] = 511, - [577] = 512, - [578] = 512, - [579] = 545, - [580] = 501, - [581] = 517, - [582] = 504, - [583] = 506, - [584] = 524, - [585] = 507, - [586] = 508, - [587] = 509, - [588] = 510, - [589] = 511, - [590] = 512, - [591] = 501, - [592] = 517, - [593] = 537, - [594] = 534, - [595] = 535, - [596] = 511, - [597] = 513, - [598] = 512, - [599] = 537, - [600] = 542, - [601] = 513, - [602] = 513, - [603] = 534, - [604] = 537, - [605] = 542, - [606] = 534, - [607] = 535, - [608] = 535, - [609] = 609, - [610] = 517, + [538] = 519, + [539] = 539, + [540] = 533, + [541] = 529, + [542] = 539, + [543] = 543, + [544] = 514, + [545] = 533, + [546] = 505, + [547] = 501, + [548] = 518, + [549] = 523, + [550] = 529, + [551] = 506, + [552] = 518, + [553] = 533, + [554] = 524, + [555] = 519, + [556] = 501, + [557] = 503, + [558] = 513, + [559] = 559, + [560] = 504, + [561] = 559, + [562] = 525, + [563] = 532, + [564] = 523, + [565] = 514, + [566] = 566, + [567] = 559, + [568] = 514, + [569] = 518, + [570] = 519, + [571] = 501, + [572] = 503, + [573] = 504, + [574] = 523, + [575] = 524, + [576] = 525, + [577] = 502, + [578] = 518, + [579] = 519, + [580] = 507, + [581] = 506, + [582] = 513, + [583] = 514, + [584] = 519, + [585] = 501, + [586] = 503, + [587] = 504, + [588] = 523, + [589] = 524, + [590] = 525, + [591] = 502, + [592] = 506, + [593] = 513, + [594] = 529, + [595] = 533, + [596] = 505, + [597] = 503, + [598] = 532, + [599] = 504, + [600] = 600, + [601] = 532, + [602] = 523, + [603] = 532, + [604] = 524, + [605] = 525, + [606] = 529, + [607] = 539, + [608] = 533, + [609] = 505, + [610] = 502, [611] = 611, - [612] = 612, - [613] = 517, - [614] = 504, - [615] = 524, + [612] = 524, + [613] = 508, + [614] = 525, + [615] = 505, [616] = 616, [617] = 617, [618] = 618, @@ -3845,38 +3852,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [626] = 626, [627] = 627, [628] = 628, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 633, + [629] = 628, + [630] = 626, + [631] = 627, + [632] = 628, + [633] = 627, [634] = 634, [635] = 635, - [636] = 634, + [636] = 627, [637] = 635, - [638] = 634, - [639] = 633, - [640] = 640, - [641] = 640, - [642] = 633, + [638] = 638, + [639] = 635, + [640] = 628, + [641] = 626, + [642] = 642, [643] = 643, - [644] = 634, - [645] = 633, - [646] = 640, - [647] = 640, + [644] = 644, + [645] = 635, + [646] = 646, + [647] = 647, [648] = 648, - [649] = 635, - [650] = 635, + [649] = 649, + [650] = 626, [651] = 651, [652] = 652, [653] = 653, [654] = 654, [655] = 655, - [656] = 397, + [656] = 396, [657] = 657, - [658] = 658, - [659] = 655, - [660] = 396, + [658] = 657, + [659] = 397, + [660] = 660, [661] = 661, [662] = 662, [663] = 663, @@ -3886,7 +3893,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [667] = 667, [668] = 668, [669] = 669, - [670] = 670, + [670] = 662, [671] = 671, [672] = 672, [673] = 673, @@ -3895,57 +3902,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [676] = 676, [677] = 677, [678] = 678, - [679] = 679, + [679] = 661, [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 654, + [681] = 661, + [682] = 662, + [683] = 662, + [684] = 661, [685] = 685, [686] = 686, [687] = 687, [688] = 688, - [689] = 678, + [689] = 689, [690] = 690, [691] = 691, - [692] = 619, - [693] = 678, - [694] = 682, - [695] = 682, - [696] = 682, - [697] = 678, - [698] = 619, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 619, + [696] = 696, + [697] = 697, + [698] = 698, [699] = 699, - [700] = 700, + [700] = 660, [701] = 701, [702] = 702, - [703] = 703, + [703] = 694, [704] = 704, [705] = 705, - [706] = 706, - [707] = 700, - [708] = 699, - [709] = 709, + [706] = 619, + [707] = 707, + [708] = 708, + [709] = 697, [710] = 710, - [711] = 711, + [711] = 396, [712] = 712, [713] = 713, - [714] = 396, + [714] = 397, [715] = 715, - [716] = 397, + [716] = 716, [717] = 717, [718] = 718, [719] = 719, [720] = 720, [721] = 721, [722] = 722, - [723] = 719, + [723] = 723, [724] = 724, - [725] = 719, - [726] = 719, + [725] = 725, + [726] = 726, [727] = 727, [728] = 728, - [729] = 719, + [729] = 729, [730] = 730, [731] = 731, [732] = 732, @@ -3966,20 +3973,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [747] = 747, [748] = 748, [749] = 749, - [750] = 750, + [750] = 733, [751] = 751, [752] = 752, [753] = 753, [754] = 754, [755] = 755, [756] = 756, - [757] = 757, - [758] = 619, + [757] = 733, + [758] = 758, [759] = 759, - [760] = 760, + [760] = 733, [761] = 761, [762] = 762, - [763] = 763, + [763] = 733, [764] = 764, [765] = 765, [766] = 766, @@ -3996,318 +4003,318 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [777] = 777, [778] = 778, [779] = 779, - [780] = 780, + [780] = 771, [781] = 781, [782] = 782, [783] = 783, [784] = 784, - [785] = 763, + [785] = 785, [786] = 786, - [787] = 769, + [787] = 787, [788] = 788, [789] = 789, - [790] = 140, - [791] = 133, - [792] = 137, + [790] = 790, + [791] = 791, + [792] = 792, [793] = 793, - [794] = 125, - [795] = 115, - [796] = 766, - [797] = 118, - [798] = 770, - [799] = 799, - [800] = 765, + [794] = 142, + [795] = 116, + [796] = 771, + [797] = 128, + [798] = 129, + [799] = 130, + [800] = 121, [801] = 801, - [802] = 784, - [803] = 803, - [804] = 784, - [805] = 805, + [802] = 802, + [803] = 619, + [804] = 804, + [805] = 771, [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 784, - [811] = 674, - [812] = 759, - [813] = 767, - [814] = 768, - [815] = 760, - [816] = 761, - [817] = 762, - [818] = 764, - [819] = 819, - [820] = 674, + [807] = 791, + [808] = 792, + [809] = 669, + [810] = 782, + [811] = 783, + [812] = 784, + [813] = 793, + [814] = 785, + [815] = 790, + [816] = 786, + [817] = 787, + [818] = 788, + [819] = 789, + [820] = 820, [821] = 821, [822] = 822, [823] = 823, - [824] = 824, + [824] = 669, [825] = 825, - [826] = 620, - [827] = 621, - [828] = 761, - [829] = 786, - [830] = 789, - [831] = 799, - [832] = 793, - [833] = 799, - [834] = 801, - [835] = 803, - [836] = 805, - [837] = 806, - [838] = 807, - [839] = 140, - [840] = 133, - [841] = 137, - [842] = 125, - [843] = 115, - [844] = 118, - [845] = 845, - [846] = 846, - [847] = 808, - [848] = 809, - [849] = 140, - [850] = 686, - [851] = 687, - [852] = 852, - [853] = 759, - [854] = 760, - [855] = 762, - [856] = 763, - [857] = 764, - [858] = 765, - [859] = 766, - [860] = 767, - [861] = 768, - [862] = 133, - [863] = 769, - [864] = 770, + [826] = 621, + [827] = 622, + [828] = 130, + [829] = 802, + [830] = 121, + [831] = 772, + [832] = 773, + [833] = 779, + [834] = 778, + [835] = 142, + [836] = 116, + [837] = 128, + [838] = 129, + [839] = 130, + [840] = 121, + [841] = 774, + [842] = 779, + [843] = 775, + [844] = 844, + [845] = 781, + [846] = 801, + [847] = 802, + [848] = 776, + [849] = 804, + [850] = 804, + [851] = 851, + [852] = 772, + [853] = 773, + [854] = 774, + [855] = 775, + [856] = 776, + [857] = 777, + [858] = 778, + [859] = 142, + [860] = 860, + [861] = 781, + [862] = 851, + [863] = 777, + [864] = 851, [865] = 801, - [866] = 137, - [867] = 809, - [868] = 125, - [869] = 805, - [870] = 115, - [871] = 786, - [872] = 845, - [873] = 681, - [874] = 685, - [875] = 688, - [876] = 691, - [877] = 877, - [878] = 788, - [879] = 789, - [880] = 118, - [881] = 806, - [882] = 845, - [883] = 793, - [884] = 788, - [885] = 845, - [886] = 807, - [887] = 808, - [888] = 803, - [889] = 690, - [890] = 680, + [866] = 129, + [867] = 116, + [868] = 128, + [869] = 869, + [870] = 851, + [871] = 871, + [872] = 791, + [873] = 689, + [874] = 792, + [875] = 690, + [876] = 876, + [877] = 793, + [878] = 878, + [879] = 699, + [880] = 687, + [881] = 782, + [882] = 783, + [883] = 784, + [884] = 785, + [885] = 786, + [886] = 787, + [887] = 788, + [888] = 789, + [889] = 790, + [890] = 691, [891] = 891, - [892] = 679, - [893] = 674, - [894] = 894, + [892] = 693, + [893] = 893, + [894] = 686, [895] = 895, - [896] = 896, - [897] = 683, - [898] = 898, - [899] = 899, + [896] = 688, + [897] = 669, + [898] = 696, + [899] = 692, [900] = 900, - [901] = 88, - [902] = 87, - [903] = 903, - [904] = 904, - [905] = 113, - [906] = 93, - [907] = 108, - [908] = 95, - [909] = 94, - [910] = 102, - [911] = 103, - [912] = 104, - [913] = 103, + [901] = 901, + [902] = 902, + [903] = 94, + [904] = 97, + [905] = 98, + [906] = 99, + [907] = 106, + [908] = 107, + [909] = 111, + [910] = 108, + [911] = 96, + [912] = 93, + [913] = 96, [914] = 914, - [915] = 915, + [915] = 99, [916] = 916, - [917] = 917, - [918] = 918, - [919] = 914, + [917] = 97, + [918] = 94, + [919] = 106, [920] = 920, - [921] = 921, - [922] = 113, - [923] = 93, - [924] = 94, - [925] = 95, - [926] = 102, - [927] = 914, - [928] = 108, - [929] = 104, + [921] = 98, + [922] = 93, + [923] = 107, + [924] = 108, + [925] = 920, + [926] = 111, + [927] = 927, + [928] = 928, + [929] = 929, [930] = 930, - [931] = 914, - [932] = 87, - [933] = 88, - [934] = 767, + [931] = 920, + [932] = 932, + [933] = 920, + [934] = 934, [935] = 935, [936] = 936, - [937] = 762, + [937] = 937, [938] = 938, - [939] = 763, + [939] = 939, [940] = 940, [941] = 941, - [942] = 764, - [943] = 943, - [944] = 765, - [945] = 759, - [946] = 766, - [947] = 947, - [948] = 948, - [949] = 760, - [950] = 768, - [951] = 951, - [952] = 770, - [953] = 769, - [954] = 761, - [955] = 760, - [956] = 768, - [957] = 761, - [958] = 762, - [959] = 765, - [960] = 763, - [961] = 770, - [962] = 759, - [963] = 769, - [964] = 964, - [965] = 764, - [966] = 767, - [967] = 766, + [942] = 783, + [943] = 785, + [944] = 786, + [945] = 787, + [946] = 788, + [947] = 789, + [948] = 790, + [949] = 791, + [950] = 792, + [951] = 793, + [952] = 952, + [953] = 782, + [954] = 954, + [955] = 784, + [956] = 956, + [957] = 786, + [958] = 793, + [959] = 788, + [960] = 787, + [961] = 783, + [962] = 790, + [963] = 963, + [964] = 791, + [965] = 965, + [966] = 966, + [967] = 965, [968] = 968, [969] = 969, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 968, - [976] = 973, - [977] = 973, - [978] = 968, - [979] = 973, - [980] = 968, + [970] = 785, + [971] = 965, + [972] = 969, + [973] = 784, + [974] = 965, + [975] = 969, + [976] = 792, + [977] = 969, + [978] = 789, + [979] = 979, + [980] = 782, [981] = 981, [982] = 982, [983] = 983, [984] = 984, - [985] = 985, + [985] = 983, [986] = 986, [987] = 987, - [988] = 982, + [988] = 988, [989] = 989, [990] = 990, [991] = 991, [992] = 992, [993] = 993, [994] = 994, - [995] = 993, + [995] = 995, [996] = 996, [997] = 997, - [998] = 996, - [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 770, - [1003] = 764, - [1004] = 765, - [1005] = 766, - [1006] = 767, - [1007] = 768, - [1008] = 1008, + [998] = 998, + [999] = 806, + [1000] = 825, + [1001] = 998, + [1002] = 1002, + [1003] = 1002, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1005, [1009] = 1009, [1010] = 1010, - [1011] = 769, + [1011] = 1011, [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 1017, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 821, - [1023] = 1009, - [1024] = 1009, - [1025] = 1012, - [1026] = 763, - [1027] = 1017, - [1028] = 1017, - [1029] = 1019, + [1013] = 1009, + [1014] = 782, + [1015] = 783, + [1016] = 784, + [1017] = 785, + [1018] = 786, + [1019] = 787, + [1020] = 788, + [1021] = 789, + [1022] = 790, + [1023] = 791, + [1024] = 1024, + [1025] = 1025, + [1026] = 792, + [1027] = 1027, + [1028] = 793, + [1029] = 1029, [1030] = 1030, - [1031] = 1031, - [1032] = 1032, - [1033] = 936, - [1034] = 1034, - [1035] = 1019, - [1036] = 1009, - [1037] = 1037, - [1038] = 1009, + [1031] = 1009, + [1032] = 1010, + [1033] = 1033, + [1034] = 1030, + [1035] = 1035, + [1036] = 1036, + [1037] = 1009, + [1038] = 1010, [1039] = 1039, - [1040] = 1019, - [1041] = 759, - [1042] = 1042, - [1043] = 1043, - [1044] = 1009, - [1045] = 823, - [1046] = 760, - [1047] = 761, - [1048] = 762, + [1040] = 1040, + [1041] = 1041, + [1042] = 1030, + [1043] = 952, + [1044] = 1030, + [1045] = 1010, + [1046] = 1046, + [1047] = 1030, + [1048] = 1048, [1049] = 1049, - [1050] = 1050, + [1050] = 1030, [1051] = 1051, [1052] = 1052, [1053] = 1053, [1054] = 1054, - [1055] = 1055, + [1055] = 844, [1056] = 1056, [1057] = 1057, [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1054, - [1063] = 1054, - [1064] = 1054, + [1062] = 1062, + [1063] = 869, + [1064] = 1057, [1065] = 1065, - [1066] = 1054, + [1066] = 1066, [1067] = 1067, - [1068] = 1068, + [1068] = 1051, [1069] = 1069, - [1070] = 1070, + [1070] = 1051, [1071] = 1071, - [1072] = 1060, + [1072] = 1072, [1073] = 1073, - [1074] = 1074, + [1074] = 1051, [1075] = 1075, [1076] = 1076, - [1077] = 877, - [1078] = 1078, + [1077] = 1077, + [1078] = 860, [1079] = 1079, - [1080] = 846, + [1080] = 1051, [1081] = 1081, [1082] = 1082, - [1083] = 852, + [1083] = 1083, [1084] = 1084, [1085] = 1085, [1086] = 1086, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 782, - [1091] = 771, + [1090] = 762, + [1091] = 731, [1092] = 1092, [1093] = 1093, [1094] = 1094, @@ -4315,37 +4322,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1096] = 1096, [1097] = 1097, [1098] = 1098, - [1099] = 1097, - [1100] = 1097, - [1101] = 1097, - [1102] = 771, - [1103] = 1103, - [1104] = 1104, - [1105] = 1103, - [1106] = 1106, - [1107] = 752, + [1099] = 731, + [1100] = 1098, + [1101] = 756, + [1102] = 758, + [1103] = 754, + [1104] = 1098, + [1105] = 762, + [1106] = 1098, + [1107] = 747, [1108] = 735, - [1109] = 1106, - [1110] = 1110, - [1111] = 782, - [1112] = 1106, - [1113] = 737, - [1114] = 1103, - [1115] = 1098, - [1116] = 1104, - [1117] = 776, - [1118] = 1106, - [1119] = 1110, - [1120] = 1104, - [1121] = 1121, - [1122] = 1104, - [1123] = 738, - [1124] = 739, - [1125] = 1110, - [1126] = 1106, - [1127] = 777, - [1128] = 736, - [1129] = 1106, + [1109] = 730, + [1110] = 759, + [1111] = 767, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1114, + [1116] = 1113, + [1117] = 1117, + [1118] = 1113, + [1119] = 1112, + [1120] = 1114, + [1121] = 1097, + [1122] = 1113, + [1123] = 1117, + [1124] = 1114, + [1125] = 1113, + [1126] = 1113, + [1127] = 1127, + [1128] = 1117, + [1129] = 1112, [1130] = 1130, [1131] = 1131, [1132] = 1132, @@ -4354,109 +4361,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1135] = 1135, [1136] = 1136, [1137] = 1137, - [1138] = 1138, + [1138] = 1131, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 1144, - [1145] = 1137, - [1146] = 1146, + [1144] = 1139, + [1145] = 1145, + [1146] = 1142, [1147] = 1147, - [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 1151, + [1148] = 1132, + [1149] = 806, + [1150] = 1133, + [1151] = 671, [1152] = 1152, - [1153] = 1134, + [1153] = 1153, [1154] = 1154, - [1155] = 1132, + [1155] = 1155, [1156] = 1156, [1157] = 1157, - [1158] = 1133, - [1159] = 1148, + [1158] = 1158, + [1159] = 1130, [1160] = 1160, - [1161] = 1161, + [1161] = 1137, [1162] = 1162, - [1163] = 1136, - [1164] = 1140, + [1163] = 1163, + [1164] = 1130, [1165] = 1165, [1166] = 1166, [1167] = 1167, - [1168] = 1168, - [1169] = 1142, - [1170] = 1130, + [1168] = 1140, + [1169] = 1169, + [1170] = 1170, [1171] = 1171, - [1172] = 1171, + [1172] = 1172, [1173] = 1173, - [1174] = 1138, - [1175] = 1157, - [1176] = 1140, - [1177] = 1138, - [1178] = 1140, - [1179] = 1179, - [1180] = 1179, + [1174] = 1174, + [1175] = 1130, + [1176] = 1176, + [1177] = 1173, + [1178] = 1178, + [1179] = 1141, + [1180] = 1145, [1181] = 1181, - [1182] = 664, - [1183] = 1183, - [1184] = 1184, - [1185] = 1181, + [1182] = 1173, + [1183] = 1147, + [1184] = 1134, + [1185] = 1135, [1186] = 1186, - [1187] = 1156, - [1188] = 1152, - [1189] = 985, + [1187] = 994, + [1188] = 1170, + [1189] = 1189, [1190] = 1190, [1191] = 1191, - [1192] = 1160, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1146, - [1198] = 1151, - [1199] = 1161, - [1200] = 1193, - [1201] = 1193, - [1202] = 1196, + [1192] = 1192, + [1193] = 1171, + [1194] = 1186, + [1195] = 1189, + [1196] = 1189, + [1197] = 1191, + [1198] = 1154, + [1199] = 1176, + [1200] = 989, + [1201] = 1201, + [1202] = 1191, [1203] = 1203, - [1204] = 821, - [1205] = 984, - [1206] = 1162, - [1207] = 1190, - [1208] = 1150, - [1209] = 1165, - [1210] = 1166, - [1211] = 1195, - [1212] = 664, + [1204] = 671, + [1205] = 1156, + [1206] = 1157, + [1207] = 1191, + [1208] = 1160, + [1209] = 990, + [1210] = 1192, + [1211] = 1190, + [1212] = 1192, [1213] = 1213, - [1214] = 1167, - [1215] = 1168, + [1214] = 1165, + [1215] = 1215, [1216] = 991, - [1217] = 1195, - [1218] = 1193, - [1219] = 1173, - [1220] = 1220, - [1221] = 992, - [1222] = 1196, - [1223] = 1223, - [1224] = 1154, - [1225] = 1195, + [1217] = 1217, + [1218] = 1218, + [1219] = 1174, + [1220] = 1166, + [1221] = 1189, + [1222] = 1167, + [1223] = 1169, + [1224] = 1224, + [1225] = 1155, [1226] = 1226, [1227] = 1227, [1228] = 1226, - [1229] = 1229, + [1229] = 1226, [1230] = 1230, [1231] = 1226, - [1232] = 1226, + [1232] = 1232, [1233] = 1233, - [1234] = 1233, - [1235] = 1233, - [1236] = 1236, - [1237] = 1236, - [1238] = 1236, + [1234] = 1234, + [1235] = 1234, + [1236] = 1233, + [1237] = 1233, + [1238] = 1234, [1239] = 1233, - [1240] = 1236, + [1240] = 1234, [1241] = 1241, [1242] = 1242, [1243] = 1243, @@ -4469,9 +4476,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1250] = 1249, [1251] = 1251, [1252] = 1252, - [1253] = 1249, + [1253] = 1253, [1254] = 1254, - [1255] = 1255, + [1255] = 1249, [1256] = 1256, [1257] = 1257, [1258] = 1258, @@ -4482,19 +4489,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1263] = 1263, [1264] = 1264, [1265] = 1265, - [1266] = 1259, + [1266] = 1266, [1267] = 1267, - [1268] = 1268, + [1268] = 1259, [1269] = 1269, - [1270] = 1270, + [1270] = 1259, [1271] = 1271, - [1272] = 1269, - [1273] = 1259, + [1272] = 1258, + [1273] = 1273, [1274] = 1259, - [1275] = 1259, - [1276] = 1269, - [1277] = 1269, - [1278] = 1278, + [1275] = 1275, + [1276] = 1258, + [1277] = 1258, + [1278] = 1259, [1279] = 1279, [1280] = 1280, [1281] = 1281, @@ -4509,20 +4516,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1290] = 1290, [1291] = 1291, [1292] = 1292, - [1293] = 1282, - [1294] = 1294, + [1293] = 1293, + [1294] = 1293, [1295] = 1295, [1296] = 1296, [1297] = 1297, - [1298] = 1282, - [1299] = 1299, + [1298] = 1298, + [1299] = 1293, [1300] = 1300, [1301] = 1301, [1302] = 1302, [1303] = 1303, - [1304] = 1304, + [1304] = 1293, [1305] = 1305, - [1306] = 1282, + [1306] = 1306, [1307] = 1307, [1308] = 1308, [1309] = 1309, @@ -4535,61 +4542,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1316] = 1316, [1317] = 1317, [1318] = 1318, - [1319] = 1314, + [1319] = 1319, [1320] = 1320, - [1321] = 1314, - [1322] = 1322, + [1321] = 1319, + [1322] = 1319, [1323] = 1323, - [1324] = 1324, + [1324] = 1319, [1325] = 1325, [1326] = 1326, [1327] = 1327, - [1328] = 1314, + [1328] = 1328, [1329] = 1329, [1330] = 1330, [1331] = 1331, [1332] = 1332, - [1333] = 1333, + [1333] = 1330, [1334] = 1334, [1335] = 1335, - [1336] = 1333, + [1336] = 1330, [1337] = 1337, - [1338] = 1329, - [1339] = 1333, - [1340] = 1337, - [1341] = 1329, - [1342] = 1333, - [1343] = 1329, - [1344] = 1337, - [1345] = 1345, - [1346] = 1337, + [1338] = 1331, + [1339] = 1332, + [1340] = 1330, + [1341] = 1332, + [1342] = 1342, + [1343] = 1343, + [1344] = 1331, + [1345] = 1331, + [1346] = 1332, [1347] = 1347, [1348] = 1348, [1349] = 1349, - [1350] = 1350, + [1350] = 1349, [1351] = 1351, [1352] = 1352, - [1353] = 1349, - [1354] = 1352, - [1355] = 1351, + [1353] = 1353, + [1354] = 1354, + [1355] = 1353, [1356] = 1356, - [1357] = 1357, + [1357] = 1349, [1358] = 1358, [1359] = 1359, - [1360] = 1360, + [1360] = 1353, [1361] = 1361, - [1362] = 1362, + [1362] = 1354, [1363] = 1363, [1364] = 1364, - [1365] = 1351, - [1366] = 1351, - [1367] = 1349, - [1368] = 1352, + [1365] = 1353, + [1366] = 1349, + [1367] = 1367, + [1368] = 1354, [1369] = 1369, [1370] = 1370, - [1371] = 1371, - [1372] = 1352, - [1373] = 1349, + [1371] = 1354, + [1372] = 1372, + [1373] = 1373, [1374] = 1374, [1375] = 1375, [1376] = 1376, @@ -4624,34 +4631,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1405] = 1405, [1406] = 1406, [1407] = 1407, - [1408] = 1407, - [1409] = 1407, + [1408] = 1408, + [1409] = 1409, [1410] = 1410, [1411] = 1411, [1412] = 1412, - [1413] = 1413, - [1414] = 1407, - [1415] = 1411, - [1416] = 1407, - [1417] = 1411, + [1413] = 1404, + [1414] = 1404, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, [1418] = 1418, - [1419] = 1419, - [1420] = 1420, + [1419] = 1417, + [1420] = 1417, [1421] = 1421, - [1422] = 1407, + [1422] = 1422, [1423] = 1423, [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 1411, - [1428] = 1411, - [1429] = 1411, - [1430] = 1430, + [1427] = 1427, + [1428] = 1404, + [1429] = 1417, + [1430] = 1404, [1431] = 1431, - [1432] = 1432, + [1432] = 1417, [1433] = 1433, - [1434] = 1434, - [1435] = 1435, + [1434] = 1417, + [1435] = 1404, [1436] = 1436, [1437] = 1437, [1438] = 1438, @@ -4681,184 +4688,184 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1462] = 1462, [1463] = 1463, [1464] = 1464, - [1465] = 1460, + [1465] = 1465, [1466] = 1466, - [1467] = 1467, - [1468] = 1462, + [1467] = 1460, + [1468] = 1468, [1469] = 1469, [1470] = 1470, [1471] = 1471, - [1472] = 1472, - [1473] = 1473, - [1474] = 1474, + [1472] = 1462, + [1473] = 1466, + [1474] = 1460, [1475] = 1475, - [1476] = 1476, - [1477] = 1466, - [1478] = 1473, - [1479] = 1469, - [1480] = 1480, - [1481] = 1481, - [1482] = 1473, + [1476] = 1457, + [1477] = 1457, + [1478] = 1464, + [1479] = 1464, + [1480] = 1464, + [1481] = 1462, + [1482] = 1460, [1483] = 1483, [1484] = 1484, [1485] = 1485, - [1486] = 1462, - [1487] = 1469, - [1488] = 1463, - [1489] = 1473, + [1486] = 1486, + [1487] = 1487, + [1488] = 1464, + [1489] = 1462, [1490] = 1490, - [1491] = 1473, - [1492] = 1492, - [1493] = 1458, + [1491] = 1466, + [1492] = 1457, + [1493] = 1493, [1494] = 1494, - [1495] = 1480, - [1496] = 1469, - [1497] = 1497, - [1498] = 1498, - [1499] = 1463, - [1500] = 1480, - [1501] = 1501, - [1502] = 1480, - [1503] = 1503, - [1504] = 1462, - [1505] = 1505, - [1506] = 1463, - [1507] = 1458, + [1495] = 1495, + [1496] = 1496, + [1497] = 1464, + [1498] = 1470, + [1499] = 1486, + [1500] = 1500, + [1501] = 1462, + [1502] = 1486, + [1503] = 1475, + [1504] = 1464, + [1505] = 1475, + [1506] = 1484, + [1507] = 1484, [1508] = 1508, - [1509] = 1476, - [1510] = 1466, - [1511] = 1462, - [1512] = 1476, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, + [1512] = 1470, [1513] = 1513, - [1514] = 1462, + [1514] = 1470, [1515] = 1515, - [1516] = 1462, + [1516] = 1516, [1517] = 1517, - [1518] = 1458, - [1519] = 1460, + [1518] = 1466, + [1519] = 1519, [1520] = 1520, [1521] = 1521, [1522] = 1522, [1523] = 1523, - [1524] = 1521, + [1524] = 1524, [1525] = 1525, [1526] = 1526, [1527] = 1527, - [1528] = 1526, + [1528] = 1522, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1532, - [1533] = 1533, - [1534] = 1529, - [1535] = 1535, - [1536] = 1536, + [1532] = 1525, + [1533] = 1529, + [1534] = 1534, + [1535] = 1523, + [1536] = 1524, [1537] = 1537, [1538] = 1538, - [1539] = 1531, - [1540] = 1535, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, - [1547] = 1547, + [1539] = 1522, + [1540] = 1540, + [1541] = 1530, + [1542] = 1531, + [1543] = 1525, + [1544] = 1529, + [1545] = 1534, + [1546] = 1523, + [1547] = 1524, [1548] = 1548, - [1549] = 1538, - [1550] = 1542, + [1549] = 1534, + [1550] = 1550, [1551] = 1551, [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1543, - [1556] = 1523, - [1557] = 1557, + [1555] = 1555, + [1556] = 1524, + [1557] = 1530, [1558] = 1558, - [1559] = 1559, + [1559] = 1531, [1560] = 1560, [1561] = 1561, - [1562] = 1548, - [1563] = 1531, - [1564] = 1544, - [1565] = 1551, - [1566] = 1552, - [1567] = 1567, - [1568] = 1529, + [1562] = 1562, + [1563] = 1524, + [1564] = 1564, + [1565] = 1565, + [1566] = 1525, + [1567] = 1526, + [1568] = 1530, [1569] = 1569, [1570] = 1570, - [1571] = 1535, - [1572] = 1538, + [1571] = 1571, + [1572] = 1572, [1573] = 1573, - [1574] = 1542, - [1575] = 1543, + [1574] = 1574, + [1575] = 1531, [1576] = 1529, - [1577] = 1544, - [1578] = 1361, - [1579] = 1542, - [1580] = 1543, - [1581] = 1544, - [1582] = 1551, - [1583] = 1552, - [1584] = 1553, - [1585] = 1570, - [1586] = 1557, + [1577] = 1534, + [1578] = 1572, + [1579] = 1572, + [1580] = 1523, + [1581] = 1551, + [1582] = 1582, + [1583] = 1523, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, [1587] = 1587, - [1588] = 1588, - [1589] = 1538, - [1590] = 1542, - [1591] = 1543, - [1592] = 1544, - [1593] = 1551, - [1594] = 1552, - [1595] = 1553, - [1596] = 1557, - [1597] = 1538, - [1598] = 1542, - [1599] = 1543, - [1600] = 1544, - [1601] = 1551, - [1602] = 1552, - [1603] = 1553, - [1604] = 1557, - [1605] = 1605, - [1606] = 1557, - [1607] = 1521, - [1608] = 1608, - [1609] = 1526, - [1610] = 1610, - [1611] = 1611, - [1612] = 1548, - [1613] = 1613, + [1588] = 1560, + [1589] = 1589, + [1590] = 1590, + [1591] = 1550, + [1592] = 1564, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1553, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1602, + [1603] = 1364, + [1604] = 1522, + [1605] = 1540, + [1606] = 1564, + [1607] = 1607, + [1608] = 1525, + [1609] = 1530, + [1610] = 1572, + [1611] = 1524, + [1612] = 1550, + [1613] = 1598, [1614] = 1614, - [1615] = 1551, + [1615] = 1598, [1616] = 1616, - [1617] = 1552, - [1618] = 1553, - [1619] = 1619, - [1620] = 1620, + [1617] = 1569, + [1618] = 1618, + [1619] = 1530, + [1620] = 1531, [1621] = 1621, - [1622] = 1622, - [1623] = 1523, - [1624] = 1624, - [1625] = 1557, - [1626] = 1622, - [1627] = 1553, + [1622] = 1522, + [1623] = 1525, + [1624] = 1569, + [1625] = 1625, + [1626] = 1626, + [1627] = 1522, [1628] = 1628, - [1629] = 1629, + [1629] = 1531, [1630] = 1630, [1631] = 1631, [1632] = 1632, [1633] = 1633, - [1634] = 1634, + [1634] = 1529, [1635] = 1635, - [1636] = 1538, - [1637] = 1637, + [1636] = 1529, + [1637] = 1534, [1638] = 1638, - [1639] = 1639, - [1640] = 1621, - [1641] = 1641, - [1642] = 1642, + [1639] = 1526, + [1640] = 1523, + [1641] = 1534, + [1642] = 1553, [1643] = 1643, [1644] = 1644, [1645] = 1643, @@ -4866,87 +4873,87 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1647] = 1647, [1648] = 1648, [1649] = 1649, - [1650] = 1649, + [1650] = 1650, [1651] = 1651, - [1652] = 1648, - [1653] = 1653, + [1652] = 1652, + [1653] = 1646, [1654] = 1654, [1655] = 1655, - [1656] = 1643, - [1657] = 1654, - [1658] = 1653, - [1659] = 1649, + [1656] = 1652, + [1657] = 1657, + [1658] = 1658, + [1659] = 1644, [1660] = 1660, - [1661] = 1648, - [1662] = 1662, - [1663] = 1660, - [1664] = 1664, + [1661] = 1661, + [1662] = 1655, + [1663] = 1663, + [1664] = 1647, [1665] = 1665, - [1666] = 1666, - [1667] = 1667, + [1666] = 1646, + [1667] = 1651, [1668] = 1668, [1669] = 1669, - [1670] = 1670, - [1671] = 1648, - [1672] = 1655, + [1670] = 1652, + [1671] = 1671, + [1672] = 1647, [1673] = 1673, - [1674] = 1668, - [1675] = 1675, - [1676] = 1675, - [1677] = 1647, - [1678] = 1668, - [1679] = 1653, - [1680] = 1644, - [1681] = 1653, - [1682] = 1682, - [1683] = 1683, + [1674] = 1646, + [1675] = 1651, + [1676] = 1676, + [1677] = 1652, + [1678] = 1678, + [1679] = 1679, + [1680] = 1680, + [1681] = 1681, + [1682] = 1651, + [1683] = 1651, [1684] = 1684, - [1685] = 1685, - [1686] = 1686, - [1687] = 1644, - [1688] = 1654, - [1689] = 1655, - [1690] = 1648, - [1691] = 1655, - [1692] = 1653, + [1685] = 1652, + [1686] = 1644, + [1687] = 1687, + [1688] = 1644, + [1689] = 1669, + [1690] = 1643, + [1691] = 1643, + [1692] = 1651, [1693] = 1693, - [1694] = 1694, - [1695] = 1660, - [1696] = 1666, - [1697] = 1649, + [1694] = 1648, + [1695] = 1652, + [1696] = 1643, + [1697] = 1697, [1698] = 1698, - [1699] = 1670, - [1700] = 1675, - [1701] = 1666, - [1702] = 1702, - [1703] = 1643, - [1704] = 1644, - [1705] = 1660, - [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1670, - [1710] = 1675, + [1699] = 1646, + [1700] = 1700, + [1701] = 1701, + [1702] = 1655, + [1703] = 1680, + [1704] = 1704, + [1705] = 1705, + [1706] = 1652, + [1707] = 1697, + [1708] = 1644, + [1709] = 1669, + [1710] = 1649, [1711] = 1648, - [1712] = 1668, - [1713] = 1675, - [1714] = 1714, - [1715] = 1649, + [1712] = 1680, + [1713] = 1713, + [1714] = 1704, + [1715] = 1669, [1716] = 1648, - [1717] = 1668, - [1718] = 1670, - [1719] = 1719, - [1720] = 1660, - [1721] = 1721, + [1717] = 1704, + [1718] = 1647, + [1719] = 1680, + [1720] = 1655, + [1721] = 1704, [1722] = 1722, [1723] = 1723, - [1724] = 1666, - [1725] = 1655, - [1726] = 1649, - [1727] = 1727, + [1724] = 1704, + [1725] = 1725, + [1726] = 1651, + [1727] = 1648, [1728] = 1728, - [1729] = 1649, - [1730] = 1666, + [1729] = 1647, + [1730] = 1697, [1731] = 1731, [1732] = 1732, [1733] = 1733, @@ -4965,8 +4972,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1746] = 1746, [1747] = 1747, [1748] = 1748, - [1749] = 1749, - [1750] = 1741, + [1749] = 622, + [1750] = 1739, [1751] = 1751, [1752] = 1752, [1753] = 1753, @@ -4977,226 +4984,226 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1758] = 1758, [1759] = 1759, [1760] = 1760, - [1761] = 1761, - [1762] = 1733, + [1761] = 1740, + [1762] = 1739, [1763] = 1763, - [1764] = 1754, - [1765] = 1756, + [1764] = 1764, + [1765] = 1765, [1766] = 1766, - [1767] = 1767, - [1768] = 1734, + [1767] = 1733, + [1768] = 1768, [1769] = 1769, - [1770] = 1766, - [1771] = 1745, - [1772] = 1772, + [1770] = 1770, + [1771] = 1771, + [1772] = 1745, [1773] = 1773, [1774] = 1754, [1775] = 1775, - [1776] = 1739, + [1776] = 1776, [1777] = 1758, [1778] = 1778, [1779] = 1779, - [1780] = 1740, + [1780] = 1780, [1781] = 1781, - [1782] = 991, - [1783] = 1756, - [1784] = 1784, - [1785] = 1751, + [1782] = 1754, + [1783] = 1765, + [1784] = 1732, + [1785] = 1785, [1786] = 1786, - [1787] = 1787, - [1788] = 1745, - [1789] = 1789, + [1787] = 1751, + [1788] = 1746, + [1789] = 1785, [1790] = 1754, [1791] = 1758, - [1792] = 1792, - [1793] = 1756, - [1794] = 1794, - [1795] = 1795, - [1796] = 1737, + [1792] = 1766, + [1793] = 1765, + [1794] = 1759, + [1795] = 1764, + [1796] = 1796, [1797] = 1797, [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1751, - [1802] = 1802, - [1803] = 1749, + [1799] = 1745, + [1800] = 1735, + [1801] = 1801, + [1802] = 1751, + [1803] = 1759, [1804] = 1804, - [1805] = 1741, - [1806] = 1755, - [1807] = 1775, - [1808] = 1808, - [1809] = 1752, - [1810] = 1734, + [1805] = 1805, + [1806] = 1796, + [1807] = 1807, + [1808] = 1785, + [1809] = 1766, + [1810] = 1801, [1811] = 1811, [1812] = 1812, [1813] = 1813, - [1814] = 1756, - [1815] = 1754, - [1816] = 1816, + [1814] = 1751, + [1815] = 1758, + [1816] = 1754, [1817] = 1817, - [1818] = 1757, - [1819] = 1751, - [1820] = 1733, - [1821] = 1760, - [1822] = 1822, - [1823] = 1823, - [1824] = 1824, - [1825] = 1752, - [1826] = 1826, + [1818] = 1759, + [1819] = 1819, + [1820] = 1820, + [1821] = 1801, + [1822] = 1751, + [1823] = 1801, + [1824] = 991, + [1825] = 1754, + [1826] = 1801, [1827] = 1827, - [1828] = 1754, + [1828] = 1828, [1829] = 1829, - [1830] = 992, - [1831] = 1831, + [1830] = 1830, + [1831] = 1828, [1832] = 1832, - [1833] = 1758, - [1834] = 1834, + [1833] = 1829, + [1834] = 1820, [1835] = 1835, - [1836] = 1736, - [1837] = 1829, - [1838] = 985, - [1839] = 1813, + [1836] = 1820, + [1837] = 1819, + [1838] = 1838, + [1839] = 1839, [1840] = 1840, - [1841] = 1766, - [1842] = 1824, + [1841] = 1841, + [1842] = 1807, [1843] = 1843, - [1844] = 1844, + [1844] = 1812, [1845] = 1760, [1846] = 1846, - [1847] = 1847, - [1848] = 1816, - [1849] = 1734, - [1850] = 1752, - [1851] = 1851, - [1852] = 1852, - [1853] = 1739, - [1854] = 621, + [1847] = 1760, + [1848] = 1848, + [1849] = 1740, + [1850] = 1850, + [1851] = 1741, + [1852] = 1839, + [1853] = 1853, + [1854] = 1854, [1855] = 1855, [1856] = 1856, - [1857] = 1800, - [1858] = 1756, + [1857] = 1857, + [1858] = 1858, [1859] = 1859, [1860] = 1860, - [1861] = 1758, + [1861] = 1861, [1862] = 1862, - [1863] = 1817, - [1864] = 1864, + [1863] = 1863, + [1864] = 989, [1865] = 1865, - [1866] = 1758, - [1867] = 1739, + [1866] = 1866, + [1867] = 1867, [1868] = 1868, - [1869] = 1751, + [1869] = 1763, [1870] = 1870, - [1871] = 1847, + [1871] = 1740, [1872] = 1872, - [1873] = 1752, - [1874] = 1864, - [1875] = 1773, - [1876] = 1795, - [1877] = 1737, - [1878] = 1878, - [1879] = 1879, + [1873] = 1850, + [1874] = 1758, + [1875] = 1741, + [1876] = 1764, + [1877] = 1796, + [1878] = 1754, + [1879] = 1745, [1880] = 1880, - [1881] = 620, - [1882] = 1781, - [1883] = 1773, - [1884] = 1775, + [1881] = 1881, + [1882] = 1829, + [1883] = 1883, + [1884] = 1828, [1885] = 1804, - [1886] = 1886, - [1887] = 1745, - [1888] = 1781, - [1889] = 1754, - [1890] = 1734, - [1891] = 1844, - [1892] = 1802, - [1893] = 1775, - [1894] = 1894, - [1895] = 1795, - [1896] = 1824, - [1897] = 1740, - [1898] = 1844, - [1899] = 1800, - [1900] = 1900, - [1901] = 1749, + [1886] = 621, + [1887] = 1887, + [1888] = 1888, + [1889] = 1812, + [1890] = 1758, + [1891] = 1891, + [1892] = 1839, + [1893] = 1760, + [1894] = 1850, + [1895] = 1895, + [1896] = 1807, + [1897] = 1766, + [1898] = 1812, + [1899] = 1899, + [1900] = 1804, + [1901] = 1828, [1902] = 1902, - [1903] = 1802, - [1904] = 1904, - [1905] = 1905, - [1906] = 1795, - [1907] = 1737, - [1908] = 1847, + [1903] = 1903, + [1904] = 1812, + [1905] = 1760, + [1906] = 1764, + [1907] = 1796, + [1908] = 1908, [1909] = 1909, - [1910] = 1847, - [1911] = 1864, + [1910] = 1910, + [1911] = 1911, [1912] = 1804, - [1913] = 1740, - [1914] = 1914, - [1915] = 1733, - [1916] = 1749, - [1917] = 1741, - [1918] = 1755, - [1919] = 1919, - [1920] = 1920, - [1921] = 1878, - [1922] = 1813, + [1913] = 1913, + [1914] = 994, + [1915] = 1915, + [1916] = 1916, + [1917] = 1917, + [1918] = 1829, + [1919] = 1916, + [1920] = 1820, + [1921] = 1732, + [1922] = 1760, [1923] = 1923, - [1924] = 1864, - [1925] = 1816, - [1926] = 1926, - [1927] = 1795, - [1928] = 1758, + [1924] = 1735, + [1925] = 1925, + [1926] = 1881, + [1927] = 1764, + [1928] = 1928, [1929] = 1929, [1930] = 1930, - [1931] = 1795, - [1932] = 1795, - [1933] = 1773, - [1934] = 1747, - [1935] = 1935, - [1936] = 1936, - [1937] = 1804, - [1938] = 1797, - [1939] = 1742, + [1931] = 1764, + [1932] = 1764, + [1933] = 1933, + [1934] = 1934, + [1935] = 1765, + [1936] = 1870, + [1937] = 1937, + [1938] = 1938, + [1939] = 1753, [1940] = 1940, - [1941] = 1941, - [1942] = 1844, + [1941] = 1938, + [1942] = 1867, [1943] = 1943, - [1944] = 1734, - [1945] = 1945, - [1946] = 1844, - [1947] = 1760, - [1948] = 1731, + [1944] = 1801, + [1945] = 1741, + [1946] = 1946, + [1947] = 1916, + [1948] = 1854, [1949] = 1949, - [1950] = 1760, - [1951] = 1951, - [1952] = 1731, - [1953] = 1953, - [1954] = 1954, - [1955] = 1752, - [1956] = 1760, - [1957] = 1957, - [1958] = 1742, - [1959] = 984, + [1950] = 1950, + [1951] = 1850, + [1952] = 1952, + [1953] = 1785, + [1954] = 1765, + [1955] = 1850, + [1956] = 1867, + [1957] = 1937, + [1958] = 1753, + [1959] = 1733, [1960] = 1960, - [1961] = 1731, + [1961] = 1854, [1962] = 1962, [1963] = 1963, [1964] = 1964, - [1965] = 1965, - [1966] = 1966, + [1965] = 990, + [1966] = 1765, [1967] = 1967, - [1968] = 1968, - [1969] = 1969, + [1968] = 1870, + [1969] = 1854, [1970] = 1970, - [1971] = 1781, - [1972] = 1756, - [1973] = 1757, - [1974] = 1742, - [1975] = 1975, - [1976] = 1976, - [1977] = 1742, - [1978] = 1978, - [1979] = 1979, - [1980] = 1757, + [1971] = 1850, + [1972] = 1758, + [1973] = 1881, + [1974] = 1753, + [1975] = 1765, + [1976] = 1733, + [1977] = 1753, + [1978] = 1867, + [1979] = 1739, + [1980] = 1928, }; static TSCharacterRange sym_number_literal_character_set_13[] = { @@ -5583,26 +5590,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(107); END_STATE(); case 30: - if (lookahead == '\n') SKIP(55); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '/') ADVANCE(287); - if (lookahead == '\\') ADVANCE(31); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(290); - if (lookahead != 0) ADVANCE(291); - END_STATE(); - case 31: - if (lookahead == '\n') ADVANCE(293); - if (lookahead == '\r') ADVANCE(292); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); - if (lookahead == 'x') ADVANCE(104); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); - if (lookahead != 0) ADVANCE(292); - END_STATE(); - case 32: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(36); + if (lookahead == '\r') ADVANCE(34); if (lookahead == '(') ADVANCE(124); if (lookahead == '/') ADVANCE(150); if (lookahead == '\\') ADVANCE(145); @@ -5610,25 +5599,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(152); END_STATE(); - case 33: + case 31: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(36); + if (lookahead == '\r') ADVANCE(34); if (lookahead == '/') ADVANCE(150); if (lookahead == '\\') ADVANCE(145); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(152); END_STATE(); - case 34: + case 32: if (lookahead == '\n') ADVANCE(122); - if (lookahead == '\r') ADVANCE(35); + if (lookahead == '\r') ADVANCE(33); if (lookahead == '(') ADVANCE(185); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') SKIP(39); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(59); END_STATE(); - case 35: + case 33: if (lookahead == '\n') ADVANCE(122); if (lookahead == '(') ADVANCE(185); if (lookahead == '/') ADVANCE(60); @@ -5636,7 +5625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(59); END_STATE(); - case 36: + case 34: if (lookahead == '\n') ADVANCE(122); if (lookahead == '/') ADVANCE(150); if (lookahead == '\\') ADVANCE(145); @@ -5644,7 +5633,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(66); if (lookahead != 0) ADVANCE(152); END_STATE(); - case 37: + case 35: if (lookahead == '\n') SKIP(58); if (lookahead == '\'') ADVANCE(277); if (lookahead == '/') ADVANCE(280); @@ -5653,6 +5642,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(281); if (lookahead != 0) ADVANCE(278); END_STATE(); + case 36: + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(292); + if (lookahead == 'U') ADVANCE(116); + if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'x') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); + if (lookahead != 0) ADVANCE(292); + END_STATE(); + case 37: + if (lookahead == '\n') SKIP(55); + if (lookahead == '"') ADVANCE(286); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '\\') ADVANCE(36); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(290); + if (lookahead != 0) ADVANCE(291); + END_STATE(); case 38: if (lookahead == '\n') SKIP(59); END_STATE(); @@ -6041,7 +6048,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 55: if (lookahead == '"') ADVANCE(286); if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(55); END_STATE(); @@ -6066,7 +6073,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 58: if (lookahead == '\'') ADVANCE(277); if (lookahead == '/') ADVANCE(60); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58); END_STATE(); @@ -7559,7 +7566,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 281: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); END_STATE(); case 282: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -7625,7 +7632,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 293: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\\') ADVANCE(36); END_STATE(); case 294: ACCEPT_TOKEN(sym_escape_sequence); @@ -8103,202 +8110,203 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(144); END_STATE(); case 79: - if (lookahead == 'r') ADVANCE(145); + if (lookahead == 'n') ADVANCE(145); + if (lookahead == 'r') ADVANCE(146); END_STATE(); case 80: - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 's') ADVANCE(147); - if (lookahead == 't') ADVANCE(148); + if (lookahead == 'l') ADVANCE(147); + if (lookahead == 's') ADVANCE(148); + if (lookahead == 't') ADVANCE(149); END_STATE(); case 81: - if (lookahead == 'a') ADVANCE(149); + if (lookahead == 'a') ADVANCE(150); END_STATE(); case 82: - if (lookahead == 'd') ADVANCE(150); - if (lookahead == 'l') ADVANCE(151); + if (lookahead == 'd') ADVANCE(151); + if (lookahead == 'l') ADVANCE(152); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(152); + if (lookahead == 'e') ADVANCE(153); END_STATE(); case 84: - if (lookahead == 'x') ADVANCE(153); + if (lookahead == 'x') ADVANCE(154); END_STATE(); case 85: - if (lookahead == 'a') ADVANCE(154); - if (lookahead == 'i') ADVANCE(155); - if (lookahead == 'o') ADVANCE(156); + if (lookahead == 'a') ADVANCE(155); + if (lookahead == 'i') ADVANCE(156); + if (lookahead == 'o') ADVANCE(157); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(157); + if (lookahead == 'n') ADVANCE(158); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(158); + if (lookahead == 'e') ADVANCE(159); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(159); + if (lookahead == 'e') ADVANCE(160); END_STATE(); case 89: - if (lookahead == 'p') ADVANCE(160); - if (lookahead == 't') ADVANCE(161); + if (lookahead == 'p') ADVANCE(161); + if (lookahead == 't') ADVANCE(162); END_STATE(); case 90: - if (lookahead == 'h') ADVANCE(162); - if (lookahead == 'r') ADVANCE(163); + if (lookahead == 'h') ADVANCE(163); + if (lookahead == 'r') ADVANCE(164); END_STATE(); case 91: - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); + if (lookahead == 'n') ADVANCE(165); + if (lookahead == 'p') ADVANCE(166); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 93: - if (lookahead == 'i') ADVANCE(167); + if (lookahead == 'i') ADVANCE(168); END_STATE(); case 94: - if (lookahead == 'a') ADVANCE(168); + if (lookahead == 'a') ADVANCE(169); END_STATE(); case 95: - if (lookahead == 'g') ADVANCE(169); + if (lookahead == 'g') ADVANCE(170); END_STATE(); case 96: ACCEPT_TOKEN(anon_sym_asm); END_STATE(); case 97: - if (lookahead == 'o') ADVANCE(170); + if (lookahead == 'o') ADVANCE(171); END_STATE(); case 98: - if (lookahead == 'l') ADVANCE(171); + if (lookahead == 'l') ADVANCE(172); END_STATE(); case 99: - if (lookahead == 'a') ADVANCE(172); + if (lookahead == 'a') ADVANCE(173); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(174); END_STATE(); case 101: - if (lookahead == 'r') ADVANCE(174); + if (lookahead == 'r') ADVANCE(175); END_STATE(); case 102: - if (lookahead == 's') ADVANCE(175); - if (lookahead == 't') ADVANCE(176); + if (lookahead == 's') ADVANCE(176); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 103: - if (lookahead == 'a') ADVANCE(177); - if (lookahead == 'i') ADVANCE(178); + if (lookahead == 'a') ADVANCE(178); + if (lookahead == 'i') ADVANCE(179); END_STATE(); case 104: - if (lookahead == 'b') ADVANCE(179); + if (lookahead == 'b') ADVANCE(180); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'e') ADVANCE(181); END_STATE(); case 106: - if (lookahead == 'm') ADVANCE(181); + if (lookahead == 'm') ADVANCE(182); END_STATE(); case 107: - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'e') ADVANCE(183); END_STATE(); case 108: - if (lookahead == 's') ADVANCE(183); + if (lookahead == 's') ADVANCE(184); END_STATE(); case 109: - if (lookahead == 'a') ADVANCE(184); + if (lookahead == 'a') ADVANCE(185); END_STATE(); case 110: ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 111: - if (lookahead == 'o') ADVANCE(185); + if (lookahead == 'o') ADVANCE(186); END_STATE(); case 112: - if (lookahead == 'i') ADVANCE(186); + if (lookahead == 'i') ADVANCE(187); END_STATE(); case 113: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(187); - if (lookahead == '3') ADVANCE(188); - if (lookahead == '6') ADVANCE(189); - if (lookahead == '8') ADVANCE(190); - if (lookahead == 'p') ADVANCE(191); + if (lookahead == '1') ADVANCE(188); + if (lookahead == '3') ADVANCE(189); + if (lookahead == '6') ADVANCE(190); + if (lookahead == '8') ADVANCE(191); + if (lookahead == 'p') ADVANCE(192); END_STATE(); case 114: - if (lookahead == 'g') ADVANCE(192); + if (lookahead == 'g') ADVANCE(193); END_STATE(); case 115: - if (lookahead == '_') ADVANCE(193); + if (lookahead == '_') ADVANCE(194); END_STATE(); case 116: - if (lookahead == 'e') ADVANCE(194); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 117: - if (lookahead == 'l') ADVANCE(195); + if (lookahead == 'l') ADVANCE(196); END_STATE(); case 118: - if (lookahead == 's') ADVANCE(196); + if (lookahead == 's') ADVANCE(197); END_STATE(); case 119: - if (lookahead == 'd') ADVANCE(197); + if (lookahead == 'd') ADVANCE(198); END_STATE(); case 120: - if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'i') ADVANCE(199); END_STATE(); case 121: - if (lookahead == 't') ADVANCE(199); + if (lookahead == 't') ADVANCE(200); END_STATE(); case 122: - if (lookahead == 'u') ADVANCE(200); + if (lookahead == 'u') ADVANCE(201); END_STATE(); case 123: - if (lookahead == 'r') ADVANCE(201); + if (lookahead == 'r') ADVANCE(202); END_STATE(); case 124: - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'n') ADVANCE(203); END_STATE(); case 125: - if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 126: - if (lookahead == 'z') ADVANCE(204); + if (lookahead == 'z') ADVANCE(205); END_STATE(); case 127: - if (lookahead == 't') ADVANCE(205); + if (lookahead == 't') ADVANCE(206); END_STATE(); case 128: - if (lookahead == 'u') ADVANCE(206); + if (lookahead == 'u') ADVANCE(207); END_STATE(); case 129: - if (lookahead == 't') ADVANCE(207); + if (lookahead == 't') ADVANCE(208); END_STATE(); case 130: - if (lookahead == 'e') ADVANCE(208); + if (lookahead == 'e') ADVANCE(209); END_STATE(); case 131: if (lookahead == 'e') ADVANCE(141); END_STATE(); case 132: - if (lookahead == 'e') ADVANCE(209); + if (lookahead == 'e') ADVANCE(210); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(210); + if (lookahead == 't') ADVANCE(211); END_STATE(); case 134: - if (lookahead == 'o') ADVANCE(211); + if (lookahead == 'o') ADVANCE(212); END_STATE(); case 135: - if (lookahead == 'i') ADVANCE(212); + if (lookahead == 'i') ADVANCE(213); END_STATE(); case 136: - if (lookahead == 'd') ADVANCE(171); + if (lookahead == 'd') ADVANCE(172); END_STATE(); case 137: - if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'a') ADVANCE(214); END_STATE(); case 138: - if (lookahead == 'l') ADVANCE(214); + if (lookahead == 'l') ADVANCE(215); END_STATE(); case 139: - if (lookahead == 'E') ADVANCE(215); + if (lookahead == 'E') ADVANCE(216); END_STATE(); case 140: ACCEPT_TOKEN(anon_sym_NULL); @@ -8307,1090 +8315,1105 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_true); END_STATE(); case 142: - if (lookahead == 'g') ADVANCE(216); + if (lookahead == 'g') ADVANCE(217); END_STATE(); case 143: - if (lookahead == 'm') ADVANCE(217); + if (lookahead == 'm') ADVANCE(218); END_STATE(); case 144: - if (lookahead == 'e') ADVANCE(218); + if (lookahead == 'e') ADVANCE(219); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(219); + if (lookahead == 'n') ADVANCE(220); END_STATE(); case 146: - if (lookahead == 'i') ADVANCE(220); + if (lookahead == 'e') ADVANCE(221); END_STATE(); case 147: - if (lookahead == 'm') ADVANCE(221); + if (lookahead == 'i') ADVANCE(222); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(222); + if (lookahead == 'm') ADVANCE(223); END_STATE(); case 149: - if (lookahead == 's') ADVANCE(223); + if (lookahead == 't') ADVANCE(224); END_STATE(); case 150: - if (lookahead == 'e') ADVANCE(224); + if (lookahead == 's') ADVANCE(225); END_STATE(); case 151: - if (lookahead == 'r') ADVANCE(225); + if (lookahead == 'e') ADVANCE(226); END_STATE(); case 152: - if (lookahead == 'c') ADVANCE(226); + if (lookahead == 'r') ADVANCE(227); END_STATE(); case 153: - if (lookahead == 'c') ADVANCE(227); - if (lookahead == 't') ADVANCE(228); + if (lookahead == 'c') ADVANCE(228); END_STATE(); case 154: - if (lookahead == 's') ADVANCE(229); + if (lookahead == 'c') ADVANCE(229); + if (lookahead == 't') ADVANCE(230); END_STATE(); case 155: - if (lookahead == 'n') ADVANCE(230); + if (lookahead == 's') ADVANCE(231); END_STATE(); case 156: - if (lookahead == 'r') ADVANCE(231); + if (lookahead == 'n') ADVANCE(232); END_STATE(); case 157: - if (lookahead == 'l') ADVANCE(232); + if (lookahead == 'r') ADVANCE(233); END_STATE(); case 158: - if (lookahead == 'a') ADVANCE(233); + if (lookahead == 'l') ADVANCE(234); END_STATE(); case 159: - if (lookahead == 's') ADVANCE(234); + if (lookahead == 'a') ADVANCE(235); END_STATE(); case 160: - if (lookahead == 't') ADVANCE(235); + if (lookahead == 's') ADVANCE(236); END_STATE(); case 161: - if (lookahead == 'd') ADVANCE(236); + if (lookahead == 't') ADVANCE(237); END_STATE(); case 162: - if (lookahead == 'i') ADVANCE(237); - if (lookahead == 'r') ADVANCE(238); + if (lookahead == 'd') ADVANCE(238); END_STATE(); case 163: - if (lookahead == 'y') ADVANCE(239); + if (lookahead == 'i') ADVANCE(239); + if (lookahead == 'r') ADVANCE(240); END_STATE(); case 164: - if (lookahead == 'a') ADVANCE(240); + if (lookahead == 'y') ADVANCE(241); END_STATE(); case 165: - if (lookahead == 't') ADVANCE(241); + if (lookahead == 'a') ADVANCE(242); END_STATE(); case 166: - if (lookahead == 'c') ADVANCE(242); + if (lookahead == 't') ADVANCE(243); END_STATE(); case 167: - if (lookahead == 'g') ADVANCE(243); + if (lookahead == 'c') ADVANCE(244); END_STATE(); case 168: - if (lookahead == 'l') ADVANCE(244); + if (lookahead == 'g') ADVANCE(245); END_STATE(); case 169: - if (lookahead == 'n') ADVANCE(245); + if (lookahead == 'l') ADVANCE(246); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_auto); + if (lookahead == 'n') ADVANCE(247); END_STATE(); case 171: - ACCEPT_TOKEN(sym_primitive_type); + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); case 172: - if (lookahead == 'k') ADVANCE(246); + ACCEPT_TOKEN(sym_primitive_type); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'k') ADVANCE(248); END_STATE(); case 174: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(247); - if (lookahead == '3') ADVANCE(248); - if (lookahead == '6') ADVANCE(249); - if (lookahead == '8') ADVANCE(250); - if (lookahead == 'p') ADVANCE(251); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 175: - if (lookahead == 't') ADVANCE(252); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(249); + if (lookahead == '3') ADVANCE(250); + if (lookahead == '6') ADVANCE(251); + if (lookahead == '8') ADVANCE(252); + if (lookahead == 'p') ADVANCE(253); END_STATE(); case 176: - if (lookahead == 'i') ADVANCE(253); + if (lookahead == 't') ADVANCE(254); END_STATE(); case 177: - if (lookahead == 'u') ADVANCE(254); + if (lookahead == 'i') ADVANCE(255); END_STATE(); case 178: - if (lookahead == 'n') ADVANCE(255); + if (lookahead == 'u') ADVANCE(256); END_STATE(); case 179: - if (lookahead == 'l') ADVANCE(256); + if (lookahead == 'n') ADVANCE(257); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'l') ADVANCE(258); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_enum); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 182: - if (lookahead == 'r') ADVANCE(257); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 183: - if (lookahead == 'e') ADVANCE(215); + if (lookahead == 'r') ADVANCE(259); END_STATE(); case 184: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'e') ADVANCE(216); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 186: - if (lookahead == 'n') ADVANCE(258); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 187: - if (lookahead == '6') ADVANCE(259); + if (lookahead == 'n') ADVANCE(260); END_STATE(); case 188: - if (lookahead == '2') ADVANCE(260); + if (lookahead == '6') ADVANCE(261); END_STATE(); case 189: - if (lookahead == '4') ADVANCE(261); + if (lookahead == '2') ADVANCE(262); END_STATE(); case 190: - if (lookahead == '_') ADVANCE(262); + if (lookahead == '4') ADVANCE(263); END_STATE(); case 191: - if (lookahead == 't') ADVANCE(263); + if (lookahead == '_') ADVANCE(264); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 't') ADVANCE(265); END_STATE(); case 193: - if (lookahead == 'a') ADVANCE(264); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 194: - if (lookahead == 't') ADVANCE(265); + if (lookahead == 'a') ADVANCE(266); END_STATE(); case 195: - if (lookahead == 'p') ADVANCE(266); + if (lookahead == 't') ADVANCE(267); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'p') ADVANCE(268); END_STATE(); case 197: - if (lookahead == 'i') ADVANCE(268); + if (lookahead == 'e') ADVANCE(269); END_STATE(); case 198: - if (lookahead == 's') ADVANCE(269); + if (lookahead == 'i') ADVANCE(270); END_STATE(); case 199: - if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(271); END_STATE(); case 200: - if (lookahead == 'r') ADVANCE(271); + if (lookahead == 'r') ADVANCE(272); END_STATE(); case 201: - if (lookahead == 't') ADVANCE(272); + if (lookahead == 'r') ADVANCE(273); END_STATE(); case 202: - if (lookahead == 'e') ADVANCE(273); + if (lookahead == 't') ADVANCE(274); END_STATE(); case 203: - if (lookahead == '_') ADVANCE(274); - if (lookahead == 'o') ADVANCE(275); + if (lookahead == 'e') ADVANCE(275); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(276); + if (lookahead == '_') ADVANCE(276); + if (lookahead == 'o') ADVANCE(277); END_STATE(); case 205: - if (lookahead == 'i') ADVANCE(277); + if (lookahead == 'e') ADVANCE(278); END_STATE(); case 206: - if (lookahead == 'c') ADVANCE(278); + if (lookahead == 'i') ADVANCE(279); END_STATE(); case 207: - if (lookahead == 'c') ADVANCE(279); + if (lookahead == 'c') ADVANCE(280); END_STATE(); case 208: - if (lookahead == 'a') ADVANCE(280); + if (lookahead == 'c') ADVANCE(281); END_STATE(); case 209: - if (lookahead == 'd') ADVANCE(281); + if (lookahead == 'a') ADVANCE(282); END_STATE(); case 210: - if (lookahead == '1') ADVANCE(282); - if (lookahead == '3') ADVANCE(283); - if (lookahead == '6') ADVANCE(284); - if (lookahead == '8') ADVANCE(285); - if (lookahead == 'p') ADVANCE(286); + if (lookahead == 'd') ADVANCE(283); END_STATE(); case 211: - if (lookahead == 'n') ADVANCE(287); + if (lookahead == '1') ADVANCE(284); + if (lookahead == '3') ADVANCE(285); + if (lookahead == '6') ADVANCE(286); + if (lookahead == '8') ADVANCE(287); + if (lookahead == 'p') ADVANCE(288); END_STATE(); case 212: - if (lookahead == 'g') ADVANCE(288); + if (lookahead == 'n') ADVANCE(289); END_STATE(); case 213: - if (lookahead == 't') ADVANCE(289); + if (lookahead == 'g') ADVANCE(290); END_STATE(); case 214: - if (lookahead == 'e') ADVANCE(290); + if (lookahead == 't') ADVANCE(291); END_STATE(); case 215: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'e') ADVANCE(292); END_STATE(); case 216: - if (lookahead == 'n') ADVANCE(291); + ACCEPT_TOKEN(sym_false); END_STATE(); case 217: - if (lookahead == 'i') ADVANCE(292); + if (lookahead == 'n') ADVANCE(293); END_STATE(); case 218: - if (lookahead == 'r') ADVANCE(293); + if (lookahead == 'i') ADVANCE(294); END_STATE(); case 219: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 'r') ADVANCE(295); END_STATE(); case 220: - if (lookahead == 'g') ADVANCE(295); + if (lookahead == 'u') ADVANCE(296); END_STATE(); case 221: - if (lookahead == '_') ADVANCE(296); + if (lookahead == 't') ADVANCE(297); END_STATE(); case 222: - if (lookahead == 'r') ADVANCE(297); + if (lookahead == 'g') ADVANCE(298); END_STATE(); case 223: - if (lookahead == 'e') ADVANCE(298); + if (lookahead == '_') ADVANCE(299); END_STATE(); case 224: - if (lookahead == 'c') ADVANCE(299); + if (lookahead == 'r') ADVANCE(300); END_STATE(); case 225: - if (lookahead == 'c') ADVANCE(300); + if (lookahead == 'e') ADVANCE(301); END_STATE(); case 226: - if (lookahead == 'l') ADVANCE(301); + if (lookahead == 'c') ADVANCE(302); END_STATE(); case 227: - if (lookahead == 'e') ADVANCE(302); + if (lookahead == 'c') ADVANCE(303); END_STATE(); case 228: - if (lookahead == 'e') ADVANCE(303); + if (lookahead == 'l') ADVANCE(304); END_STATE(); case 229: - if (lookahead == 't') ADVANCE(304); + if (lookahead == 'e') ADVANCE(305); END_STATE(); case 230: - if (lookahead == 'a') ADVANCE(305); + if (lookahead == 'e') ADVANCE(306); END_STATE(); case 231: - if (lookahead == 'c') ADVANCE(306); + if (lookahead == 't') ADVANCE(307); END_STATE(); case 232: - if (lookahead == 'i') ADVANCE(307); + if (lookahead == 'a') ADVANCE(308); END_STATE(); case 233: - if (lookahead == 'v') ADVANCE(308); + if (lookahead == 'c') ADVANCE(309); END_STATE(); case 234: - if (lookahead == 't') ADVANCE(309); + if (lookahead == 'i') ADVANCE(310); END_STATE(); case 235: - if (lookahead == 'r') ADVANCE(310); + if (lookahead == 'v') ADVANCE(311); END_STATE(); case 236: - if (lookahead == 'c') ADVANCE(311); + if (lookahead == 't') ADVANCE(312); END_STATE(); case 237: - if (lookahead == 's') ADVANCE(312); + if (lookahead == 'r') ADVANCE(313); END_STATE(); case 238: - if (lookahead == 'e') ADVANCE(313); + if (lookahead == 'c') ADVANCE(314); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym___try); + if (lookahead == 's') ADVANCE(315); END_STATE(); case 240: - if (lookahead == 'l') ADVANCE(314); + if (lookahead == 'e') ADVANCE(316); END_STATE(); case 241: - if (lookahead == 'r') ADVANCE(315); + ACCEPT_TOKEN(anon_sym___try); END_STATE(); case 242: - if (lookahead == 't') ADVANCE(316); + if (lookahead == 'l') ADVANCE(317); END_STATE(); case 243: - if (lookahead == 'n') ADVANCE(317); + if (lookahead == 'r') ADVANCE(318); END_STATE(); case 244: - if (lookahead == 'i') ADVANCE(318); + if (lookahead == 't') ADVANCE(319); END_STATE(); case 245: - if (lookahead == 'a') ADVANCE(319); - if (lookahead == 'o') ADVANCE(320); + if (lookahead == 'n') ADVANCE(320); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'i') ADVANCE(321); END_STATE(); case 247: - if (lookahead == '6') ADVANCE(321); + if (lookahead == 'a') ADVANCE(322); + if (lookahead == 'o') ADVANCE(323); END_STATE(); case 248: - if (lookahead == '2') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 249: - if (lookahead == '4') ADVANCE(323); + if (lookahead == '6') ADVANCE(324); END_STATE(); case 250: - if (lookahead == '_') ADVANCE(324); + if (lookahead == '2') ADVANCE(325); END_STATE(); case 251: - if (lookahead == 't') ADVANCE(325); + if (lookahead == '4') ADVANCE(326); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(326); + if (lookahead == '_') ADVANCE(327); END_STATE(); case 253: - if (lookahead == 'n') ADVANCE(327); + if (lookahead == 't') ADVANCE(328); END_STATE(); case 254: - if (lookahead == 'l') ADVANCE(328); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(329); END_STATE(); case 255: - if (lookahead == 'e') ADVANCE(329); + if (lookahead == 'n') ADVANCE(330); END_STATE(); case 256: - if (lookahead == 'e') ADVANCE(171); + if (lookahead == 'l') ADVANCE(331); END_STATE(); case 257: - if (lookahead == 'n') ADVANCE(330); + if (lookahead == 'e') ADVANCE(332); END_STATE(); case 258: - if (lookahead == 'e') ADVANCE(331); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 259: - if (lookahead == '_') ADVANCE(332); + if (lookahead == 'n') ADVANCE(333); END_STATE(); case 260: - if (lookahead == '_') ADVANCE(333); + if (lookahead == 'e') ADVANCE(334); END_STATE(); case 261: - if (lookahead == '_') ADVANCE(334); + if (lookahead == '_') ADVANCE(335); END_STATE(); case 262: - if (lookahead == 't') ADVANCE(171); + if (lookahead == '_') ADVANCE(336); END_STATE(); case 263: - if (lookahead == 'r') ADVANCE(335); + if (lookahead == '_') ADVANCE(337); END_STATE(); case 264: - if (lookahead == 'l') ADVANCE(336); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 265: - if (lookahead == 'u') ADVANCE(337); + if (lookahead == 'r') ADVANCE(338); END_STATE(); case 266: - if (lookahead == 't') ADVANCE(338); + if (lookahead == 'l') ADVANCE(339); END_STATE(); case 267: - if (lookahead == 't') ADVANCE(339); + if (lookahead == 'u') ADVANCE(340); END_STATE(); case 268: - if (lookahead == 'f') ADVANCE(340); + if (lookahead == 't') ADVANCE(341); END_STATE(); case 269: - if (lookahead == 't') ADVANCE(341); + if (lookahead == 't') ADVANCE(342); END_STATE(); case 270: - if (lookahead == 'i') ADVANCE(342); + if (lookahead == 'f') ADVANCE(343); END_STATE(); case 271: - if (lookahead == 'n') ADVANCE(343); + if (lookahead == 't') ADVANCE(344); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'i') ADVANCE(345); END_STATE(); case 273: - if (lookahead == 'd') ADVANCE(344); + if (lookahead == 'n') ADVANCE(346); END_STATE(); case 274: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 275: - if (lookahead == 'f') ADVANCE(345); + if (lookahead == 'd') ADVANCE(347); END_STATE(); case 276: - if (lookahead == '_') ADVANCE(346); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 277: - if (lookahead == 'c') ADVANCE(347); + if (lookahead == 'f') ADVANCE(348); END_STATE(); case 278: - if (lookahead == 't') ADVANCE(348); + if (lookahead == '_') ADVANCE(349); END_STATE(); case 279: - if (lookahead == 'h') ADVANCE(349); + if (lookahead == 'c') ADVANCE(350); END_STATE(); case 280: - if (lookahead == 'd') ADVANCE(350); + if (lookahead == 't') ADVANCE(351); END_STATE(); case 281: - if (lookahead == 'e') ADVANCE(351); + if (lookahead == 'h') ADVANCE(352); END_STATE(); case 282: - if (lookahead == '6') ADVANCE(352); + if (lookahead == 'd') ADVANCE(353); END_STATE(); case 283: - if (lookahead == '2') ADVANCE(353); + if (lookahead == 'e') ADVANCE(354); END_STATE(); case 284: - if (lookahead == '4') ADVANCE(354); + if (lookahead == '6') ADVANCE(355); END_STATE(); case 285: - if (lookahead == '_') ADVANCE(355); + if (lookahead == '2') ADVANCE(356); END_STATE(); case 286: - if (lookahead == 't') ADVANCE(356); + if (lookahead == '4') ADVANCE(357); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == '_') ADVANCE(358); END_STATE(); case 288: - if (lookahead == 'n') ADVANCE(357); + if (lookahead == 't') ADVANCE(359); END_STATE(); case 289: - if (lookahead == 'i') ADVANCE(358); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'n') ADVANCE(360); END_STATE(); case 291: - if (lookahead == 'a') ADVANCE(359); - if (lookahead == 'o') ADVANCE(360); + if (lookahead == 'i') ADVANCE(361); END_STATE(); case 292: - if (lookahead == 'c') ADVANCE(361); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 293: - if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'a') ADVANCE(362); + if (lookahead == 'o') ADVANCE(363); END_STATE(); case 294: - if (lookahead == 'u') ADVANCE(363); + if (lookahead == 'c') ADVANCE(364); END_STATE(); case 295: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'i') ADVANCE(365); END_STATE(); case 296: - if (lookahead == '_') ADVANCE(365); + if (lookahead == 'l') ADVANCE(366); END_STATE(); case 297: - if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'u') ADVANCE(367); END_STATE(); case 298: - if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'n') ADVANCE(368); END_STATE(); case 299: - if (lookahead == 'l') ADVANCE(368); + if (lookahead == '_') ADVANCE(369); END_STATE(); case 300: - if (lookahead == 'a') ADVANCE(369); + if (lookahead == 'i') ADVANCE(370); END_STATE(); case 301: - if (lookahead == 's') ADVANCE(370); + if (lookahead == 'd') ADVANCE(371); END_STATE(); case 302: - if (lookahead == 'p') ADVANCE(371); + if (lookahead == 'l') ADVANCE(372); END_STATE(); case 303: - if (lookahead == 'n') ADVANCE(372); + if (lookahead == 'a') ADVANCE(373); END_STATE(); case 304: - if (lookahead == 'c') ADVANCE(373); + if (lookahead == 's') ADVANCE(374); END_STATE(); case 305: - if (lookahead == 'l') ADVANCE(374); + if (lookahead == 'p') ADVANCE(375); END_STATE(); case 306: - if (lookahead == 'e') ADVANCE(375); + if (lookahead == 'n') ADVANCE(376); END_STATE(); case 307: - if (lookahead == 'n') ADVANCE(376); + if (lookahead == 'c') ADVANCE(377); END_STATE(); case 308: - if (lookahead == 'e') ADVANCE(377); + if (lookahead == 'l') ADVANCE(378); END_STATE(); case 309: - if (lookahead == 'r') ADVANCE(378); + if (lookahead == 'e') ADVANCE(379); END_STATE(); case 310: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'n') ADVANCE(380); END_STATE(); case 311: - if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'e') ADVANCE(381); END_STATE(); case 312: - if (lookahead == 'c') ADVANCE(380); + if (lookahead == 'r') ADVANCE(382); END_STATE(); case 313: - if (lookahead == 'a') ADVANCE(381); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 314: - if (lookahead == 'i') ADVANCE(382); + if (lookahead == 'a') ADVANCE(383); END_STATE(); case 315: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == 'c') ADVANCE(384); END_STATE(); case 316: - if (lookahead == 'o') ADVANCE(383); + if (lookahead == 'a') ADVANCE(385); END_STATE(); case 317: - if (lookahead == 'o') ADVANCE(384); + if (lookahead == 'i') ADVANCE(386); END_STATE(); case 318: - if (lookahead == 'g') ADVANCE(385); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 319: - if (lookahead == 's') ADVANCE(386); + if (lookahead == 'o') ADVANCE(387); END_STATE(); case 320: - if (lookahead == 'f') ADVANCE(387); + if (lookahead == 'o') ADVANCE(388); END_STATE(); case 321: - if (lookahead == '_') ADVANCE(388); + if (lookahead == 'g') ADVANCE(389); END_STATE(); case 322: - if (lookahead == '_') ADVANCE(389); + if (lookahead == 's') ADVANCE(390); END_STATE(); case 323: - if (lookahead == '_') ADVANCE(390); + if (lookahead == 'f') ADVANCE(391); END_STATE(); case 324: - if (lookahead == 't') ADVANCE(171); + if (lookahead == '_') ADVANCE(392); END_STATE(); case 325: - if (lookahead == 'r') ADVANCE(391); + if (lookahead == '_') ADVANCE(393); END_STATE(); case 326: - if (lookahead == 'x') ADVANCE(392); + if (lookahead == '_') ADVANCE(394); END_STATE(); case 327: - if (lookahead == 'u') ADVANCE(393); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 328: - if (lookahead == 't') ADVANCE(394); + if (lookahead == 'r') ADVANCE(395); END_STATE(); case 329: - if (lookahead == 'd') ADVANCE(395); + if (lookahead == 'x') ADVANCE(396); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'u') ADVANCE(397); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 't') ADVANCE(398); END_STATE(); case 332: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'd') ADVANCE(399); END_STATE(); case 333: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 334: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 335: - if (lookahead == '_') ADVANCE(396); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 336: - if (lookahead == 'i') ADVANCE(397); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 337: - if (lookahead == 'r') ADVANCE(398); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 338: - if (lookahead == 'r') ADVANCE(399); + if (lookahead == '_') ADVANCE(400); END_STATE(); case 339: - if (lookahead == 'o') ADVANCE(400); + if (lookahead == 'i') ADVANCE(401); END_STATE(); case 340: - if (lookahead == 'f') ADVANCE(401); + if (lookahead == 'r') ADVANCE(402); END_STATE(); case 341: - if (lookahead == 'e') ADVANCE(402); + if (lookahead == 'r') ADVANCE(403); END_STATE(); case 342: - if (lookahead == 'c') ADVANCE(403); + if (lookahead == 'o') ADVANCE(404); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'f') ADVANCE(405); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 'e') ADVANCE(406); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 'c') ADVANCE(407); END_STATE(); case 346: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_static); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 350: - if (lookahead == '_') ADVANCE(404); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 351: - if (lookahead == 'f') ADVANCE(405); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 352: - if (lookahead == '_') ADVANCE(406); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 353: - if (lookahead == '_') ADVANCE(407); + if (lookahead == '_') ADVANCE(408); END_STATE(); case 354: - if (lookahead == '_') ADVANCE(408); + if (lookahead == 'f') ADVANCE(409); END_STATE(); case 355: - if (lookahead == 't') ADVANCE(171); + if (lookahead == '_') ADVANCE(410); END_STATE(); case 356: - if (lookahead == 'r') ADVANCE(409); + if (lookahead == '_') ADVANCE(411); END_STATE(); case 357: - if (lookahead == 'e') ADVANCE(410); + if (lookahead == '_') ADVANCE(412); END_STATE(); case 358: - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 359: - if (lookahead == 's') ADVANCE(412); + if (lookahead == 'r') ADVANCE(413); END_STATE(); case 360: - if (lookahead == 'f') ADVANCE(413); + if (lookahead == 'e') ADVANCE(414); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == 'l') ADVANCE(415); END_STATE(); case 362: - if (lookahead == 'c') ADVANCE(414); + if (lookahead == 's') ADVANCE(416); END_STATE(); case 363: - if (lookahead == 'r') ADVANCE(415); + if (lookahead == 'f') ADVANCE(417); END_STATE(); case 364: - if (lookahead == 'o') ADVANCE(416); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym___asm__); + if (lookahead == 'c') ADVANCE(418); END_STATE(); case 366: - if (lookahead == 'b') ADVANCE(417); + if (lookahead == 'l') ADVANCE(419); END_STATE(); case 367: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == 'r') ADVANCE(420); END_STATE(); case 368: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 'o') ADVANCE(421); END_STATE(); case 369: - if (lookahead == 'l') ADVANCE(418); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 370: - if (lookahead == 'p') ADVANCE(419); + if (lookahead == 'b') ADVANCE(422); END_STATE(); case 371: - if (lookahead == 't') ADVANCE(420); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 372: - if (lookahead == 's') ADVANCE(421); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 373: - if (lookahead == 'a') ADVANCE(422); + if (lookahead == 'l') ADVANCE(423); END_STATE(); case 374: - if (lookahead == 'l') ADVANCE(423); + if (lookahead == 'p') ADVANCE(424); END_STATE(); case 375: - if (lookahead == 'i') ADVANCE(424); + if (lookahead == 't') ADVANCE(425); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(425); + if (lookahead == 's') ADVANCE(426); END_STATE(); case 377: - ACCEPT_TOKEN(anon_sym___leave); + if (lookahead == 'a') ADVANCE(427); END_STATE(); case 378: - if (lookahead == 'i') ADVANCE(426); + if (lookahead == 'l') ADVANCE(428); END_STATE(); case 379: - if (lookahead == 'l') ADVANCE(427); + if (lookahead == 'i') ADVANCE(429); END_STATE(); case 380: - if (lookahead == 'a') ADVANCE(428); + if (lookahead == 'e') ADVANCE(430); END_STATE(); case 381: - if (lookahead == 'd') ADVANCE(429); + ACCEPT_TOKEN(anon_sym___leave); END_STATE(); case 382: - if (lookahead == 'g') ADVANCE(430); + if (lookahead == 'i') ADVANCE(431); END_STATE(); case 383: - if (lookahead == 'r') ADVANCE(431); + if (lookahead == 'l') ADVANCE(432); END_STATE(); case 384: - if (lookahead == 'f') ADVANCE(432); + if (lookahead == 'a') ADVANCE(433); END_STATE(); case 385: - if (lookahead == 'n') ADVANCE(433); + if (lookahead == 'd') ADVANCE(434); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym_alignas); + if (lookahead == 'g') ADVANCE(435); END_STATE(); case 387: - ACCEPT_TOKEN(anon_sym_alignof); + if (lookahead == 'r') ADVANCE(436); END_STATE(); case 388: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'f') ADVANCE(437); END_STATE(); case 389: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'n') ADVANCE(438); END_STATE(); case 390: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_alignas); END_STATE(); case 391: - if (lookahead == '_') ADVANCE(434); + ACCEPT_TOKEN(anon_sym_alignof); END_STATE(); case 392: - if (lookahead == 'p') ADVANCE(435); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 393: - if (lookahead == 'e') ADVANCE(436); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 394: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 395: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == '_') ADVANCE(439); END_STATE(); case 396: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'p') ADVANCE(440); END_STATE(); case 397: - if (lookahead == 'g') ADVANCE(437); + if (lookahead == 'e') ADVANCE(441); END_STATE(); case 398: - if (lookahead == 'n') ADVANCE(438); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 399: - ACCEPT_TOKEN(anon_sym_nullptr); - if (lookahead == '_') ADVANCE(439); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 400: - if (lookahead == 'f') ADVANCE(440); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 401: - if (lookahead == '_') ADVANCE(441); + if (lookahead == 'g') ADVANCE(442); END_STATE(); case 402: - if (lookahead == 'r') ADVANCE(442); + if (lookahead == 'n') ADVANCE(443); END_STATE(); case 403: - if (lookahead == 't') ADVANCE(443); + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(444); END_STATE(); case 404: - if (lookahead == 'l') ADVANCE(444); + if (lookahead == 'f') ADVANCE(445); END_STATE(); case 405: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == '_') ADVANCE(446); END_STATE(); case 406: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'r') ADVANCE(447); END_STATE(); case 407: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 't') ADVANCE(448); END_STATE(); case 408: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 'l') ADVANCE(449); END_STATE(); case 409: - if (lookahead == '_') ADVANCE(445); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 410: - if (lookahead == 'd') ADVANCE(446); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 411: - if (lookahead == 'e') ADVANCE(447); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 412: - ACCEPT_TOKEN(anon_sym__Alignas); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 413: - ACCEPT_TOKEN(anon_sym__Alignof); + if (lookahead == '_') ADVANCE(450); END_STATE(); case 414: - ACCEPT_TOKEN(anon_sym__Generic); + if (lookahead == 'd') ADVANCE(451); END_STATE(); case 415: - if (lookahead == 'n') ADVANCE(448); + if (lookahead == 'e') ADVANCE(452); END_STATE(); case 416: - if (lookahead == 'f') ADVANCE(449); + ACCEPT_TOKEN(anon_sym__Alignas); END_STATE(); case 417: - if (lookahead == 'u') ADVANCE(450); + ACCEPT_TOKEN(anon_sym__Alignof); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(451); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 419: - if (lookahead == 'e') ADVANCE(452); + ACCEPT_TOKEN(anon_sym__Nonnull); END_STATE(); case 420: - ACCEPT_TOKEN(anon_sym___except); + if (lookahead == 'n') ADVANCE(453); END_STATE(); case 421: - if (lookahead == 'i') ADVANCE(453); + if (lookahead == 'f') ADVANCE(454); END_STATE(); case 422: - if (lookahead == 'l') ADVANCE(454); + if (lookahead == 'u') ADVANCE(455); END_STATE(); case 423: - if (lookahead == 'y') ADVANCE(455); + if (lookahead == 'l') ADVANCE(456); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(456); + if (lookahead == 'e') ADVANCE(457); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym___inline); - if (lookahead == '_') ADVANCE(457); + ACCEPT_TOKEN(anon_sym___except); END_STATE(); case 426: - if (lookahead == 'c') ADVANCE(458); + if (lookahead == 'i') ADVANCE(458); END_STATE(); case 427: if (lookahead == 'l') ADVANCE(459); END_STATE(); case 428: - if (lookahead == 'l') ADVANCE(460); + if (lookahead == 'y') ADVANCE(460); END_STATE(); case 429: - ACCEPT_TOKEN(anon_sym___thread); + if (lookahead == 'n') ADVANCE(461); END_STATE(); case 430: - if (lookahead == 'n') ADVANCE(461); + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(462); END_STATE(); case 431: - if (lookahead == 'c') ADVANCE(462); + if (lookahead == 'c') ADVANCE(463); END_STATE(); case 432: - ACCEPT_TOKEN(anon_sym__alignof); + if (lookahead == 'l') ADVANCE(464); END_STATE(); case 433: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'l') ADVANCE(465); END_STATE(); case 434: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym___thread); END_STATE(); case 435: - if (lookahead == 'r') ADVANCE(464); + if (lookahead == 'n') ADVANCE(466); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'c') ADVANCE(467); END_STATE(); case 437: - if (lookahead == 'n') ADVANCE(465); + ACCEPT_TOKEN(anon_sym__alignof); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_noreturn); + if (lookahead == 'e') ADVANCE(468); END_STATE(); case 439: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 440: - ACCEPT_TOKEN(anon_sym_offsetof); + if (lookahead == 'r') ADVANCE(469); END_STATE(); case 441: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 442: - ACCEPT_TOKEN(anon_sym_register); + if (lookahead == 'n') ADVANCE(470); END_STATE(); case 443: - ACCEPT_TOKEN(anon_sym_restrict); + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(466); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 445: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym_volatile); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym__Noreturn); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 449: - ACCEPT_TOKEN(anon_sym___alignof); - if (lookahead == '_') ADVANCE(467); + if (lookahead == 'o') ADVANCE(471); END_STATE(); case 450: - if (lookahead == 't') ADVANCE(468); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 451: - ACCEPT_TOKEN(anon_sym___clrcall); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 452: - if (lookahead == 'c') ADVANCE(469); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 453: - if (lookahead == 'o') ADVANCE(470); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 454: - if (lookahead == 'l') ADVANCE(471); + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(472); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym___finally); + if (lookahead == 't') ADVANCE(473); END_STATE(); case 456: - if (lookahead == 'l') ADVANCE(472); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 457: - if (lookahead == '_') ADVANCE(473); + if (lookahead == 'c') ADVANCE(474); END_STATE(); case 458: - if (lookahead == 't') ADVANCE(474); + if (lookahead == 'o') ADVANCE(475); END_STATE(); case 459: - ACCEPT_TOKEN(anon_sym___stdcall); + if (lookahead == 'l') ADVANCE(476); END_STATE(); case 460: - if (lookahead == 'l') ADVANCE(475); + ACCEPT_TOKEN(anon_sym___finally); END_STATE(); case 461: - if (lookahead == 'e') ADVANCE(476); + if (lookahead == 'l') ADVANCE(477); END_STATE(); case 462: - if (lookahead == 'a') ADVANCE(477); + if (lookahead == '_') ADVANCE(478); END_STATE(); case 463: - if (lookahead == 'd') ADVANCE(478); + if (lookahead == 't') ADVANCE(479); END_STATE(); case 464: - ACCEPT_TOKEN(anon_sym_constexpr); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 465: - if (lookahead == '_') ADVANCE(479); + if (lookahead == 'l') ADVANCE(480); END_STATE(); case 466: - if (lookahead == 'c') ADVANCE(480); + if (lookahead == 'e') ADVANCE(481); END_STATE(); case 467: - if (lookahead == '_') ADVANCE(481); + if (lookahead == 'a') ADVANCE(482); END_STATE(); case 468: - if (lookahead == 'e') ADVANCE(482); + if (lookahead == 'd') ADVANCE(483); END_STATE(); case 469: - ACCEPT_TOKEN(anon_sym___declspec); + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); case 470: - if (lookahead == 'n') ADVANCE(483); + if (lookahead == '_') ADVANCE(484); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym___fastcall); + if (lookahead == 'c') ADVANCE(485); END_STATE(); case 472: - if (lookahead == 'i') ADVANCE(484); + if (lookahead == '_') ADVANCE(486); END_STATE(); case 473: - ACCEPT_TOKEN(anon_sym___inline__); + if (lookahead == 'e') ADVANCE(487); END_STATE(); case 474: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(485); + ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); case 475: - ACCEPT_TOKEN(anon_sym___thiscall); + if (lookahead == 'n') ADVANCE(488); END_STATE(); case 476: - if (lookahead == 'd') ADVANCE(486); + ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); case 477: - if (lookahead == 'l') ADVANCE(487); + if (lookahead == 'i') ADVANCE(489); END_STATE(); case 478: - ACCEPT_TOKEN(anon_sym__unaligned); + ACCEPT_TOKEN(anon_sym___inline__); END_STATE(); case 479: - if (lookahead == 't') ADVANCE(171); + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(490); END_STATE(); case 480: - if (lookahead == 'a') ADVANCE(488); + ACCEPT_TOKEN(anon_sym___thiscall); END_STATE(); case 481: - ACCEPT_TOKEN(anon_sym___alignof__); + if (lookahead == 'd') ADVANCE(491); END_STATE(); case 482: - if (lookahead == '_') ADVANCE(489); + if (lookahead == 'l') ADVANCE(492); END_STATE(); case 483: - if (lookahead == '_') ADVANCE(490); + ACCEPT_TOKEN(anon_sym__unaligned); END_STATE(); case 484: - if (lookahead == 'n') ADVANCE(491); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 485: - if (lookahead == '_') ADVANCE(492); + if (lookahead == 'a') ADVANCE(493); END_STATE(); case 486: - ACCEPT_TOKEN(anon_sym___unaligned); + ACCEPT_TOKEN(anon_sym___alignof__); END_STATE(); case 487: - if (lookahead == 'l') ADVANCE(493); + if (lookahead == '_') ADVANCE(494); END_STATE(); case 488: - if (lookahead == 'l') ADVANCE(494); + if (lookahead == '_') ADVANCE(495); END_STATE(); case 489: - if (lookahead == '_') ADVANCE(495); + if (lookahead == 'n') ADVANCE(496); END_STATE(); case 490: - if (lookahead == '_') ADVANCE(496); + if (lookahead == '_') ADVANCE(497); END_STATE(); case 491: - if (lookahead == 'e') ADVANCE(497); + ACCEPT_TOKEN(anon_sym___unaligned); END_STATE(); case 492: - ACCEPT_TOKEN(anon_sym___restrict__); + if (lookahead == 'l') ADVANCE(498); END_STATE(); case 493: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == 'l') ADVANCE(499); END_STATE(); case 494: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == '_') ADVANCE(500); END_STATE(); case 495: - ACCEPT_TOKEN(anon_sym___attribute__); + if (lookahead == '_') ADVANCE(501); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym___extension__); + if (lookahead == 'e') ADVANCE(502); END_STATE(); case 497: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 498: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 499: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 500: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 501: + ACCEPT_TOKEN(anon_sym___extension__); + END_STATE(); + case 502: ACCEPT_TOKEN(anon_sym___forceinline); END_STATE(); default: @@ -9453,12 +9476,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [51] = {.lex_state = 47}, [52] = {.lex_state = 47}, [53] = {.lex_state = 119}, - [54] = {.lex_state = 47}, - [55] = {.lex_state = 119}, + [54] = {.lex_state = 119}, + [55] = {.lex_state = 47}, [56] = {.lex_state = 47}, [57] = {.lex_state = 119}, - [58] = {.lex_state = 119}, - [59] = {.lex_state = 47}, + [58] = {.lex_state = 47}, + [59] = {.lex_state = 119}, [60] = {.lex_state = 119}, [61] = {.lex_state = 119}, [62] = {.lex_state = 119}, @@ -9475,7 +9498,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [73] = {.lex_state = 119}, [74] = {.lex_state = 119}, [75] = {.lex_state = 45}, - [76] = {.lex_state = 119}, + [76] = {.lex_state = 45}, [77] = {.lex_state = 45}, [78] = {.lex_state = 45}, [79] = {.lex_state = 45}, @@ -9486,7 +9509,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [84] = {.lex_state = 45}, [85] = {.lex_state = 45}, [86] = {.lex_state = 45}, - [87] = {.lex_state = 45}, + [87] = {.lex_state = 119}, [88] = {.lex_state = 45}, [89] = {.lex_state = 45}, [90] = {.lex_state = 45}, @@ -9508,10 +9531,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [106] = {.lex_state = 45}, [107] = {.lex_state = 45}, [108] = {.lex_state = 45}, - [109] = {.lex_state = 119}, + [109] = {.lex_state = 45}, [110] = {.lex_state = 45}, [111] = {.lex_state = 45}, - [112] = {.lex_state = 45}, + [112] = {.lex_state = 119}, [113] = {.lex_state = 45}, [114] = {.lex_state = 45}, [115] = {.lex_state = 45}, @@ -9543,8 +9566,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [141] = {.lex_state = 45}, [142] = {.lex_state = 45}, [143] = {.lex_state = 119}, - [144] = {.lex_state = 119}, - [145] = {.lex_state = 47}, + [144] = {.lex_state = 47}, + [145] = {.lex_state = 119}, [146] = {.lex_state = 119}, [147] = {.lex_state = 119}, [148] = {.lex_state = 119}, @@ -9583,29 +9606,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [181] = {.lex_state = 119}, [182] = {.lex_state = 119}, [183] = {.lex_state = 119}, - [184] = {.lex_state = 47}, + [184] = {.lex_state = 119}, [185] = {.lex_state = 47}, [186] = {.lex_state = 47}, [187] = {.lex_state = 47}, - [188] = {.lex_state = 47}, + [188] = {.lex_state = 119}, [189] = {.lex_state = 47}, [190] = {.lex_state = 47}, [191] = {.lex_state = 47}, [192] = {.lex_state = 47}, [193] = {.lex_state = 47}, [194] = {.lex_state = 47}, - [195] = {.lex_state = 119}, + [195] = {.lex_state = 47}, [196] = {.lex_state = 119}, - [197] = {.lex_state = 47}, - [198] = {.lex_state = 47}, + [197] = {.lex_state = 119}, + [198] = {.lex_state = 119}, [199] = {.lex_state = 47}, [200] = {.lex_state = 47}, [201] = {.lex_state = 47}, [202] = {.lex_state = 47}, [203] = {.lex_state = 47}, - [204] = {.lex_state = 119}, + [204] = {.lex_state = 47}, [205] = {.lex_state = 47}, - [206] = {.lex_state = 47}, + [206] = {.lex_state = 119}, [207] = {.lex_state = 47}, [208] = {.lex_state = 47}, [209] = {.lex_state = 47}, @@ -9622,8 +9645,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [220] = {.lex_state = 47}, [221] = {.lex_state = 47}, [222] = {.lex_state = 47}, - [223] = {.lex_state = 119}, - [224] = {.lex_state = 119}, + [223] = {.lex_state = 47}, + [224] = {.lex_state = 47}, [225] = {.lex_state = 119}, [226] = {.lex_state = 119}, [227] = {.lex_state = 119}, @@ -9650,30 +9673,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [248] = {.lex_state = 119}, [249] = {.lex_state = 119}, [250] = {.lex_state = 119}, - [251] = {.lex_state = 119}, - [252] = {.lex_state = 119}, - [253] = {.lex_state = 119}, + [251] = {.lex_state = 47}, + [252] = {.lex_state = 47}, + [253] = {.lex_state = 47}, [254] = {.lex_state = 119}, - [255] = {.lex_state = 47}, - [256] = {.lex_state = 47}, - [257] = {.lex_state = 47}, - [258] = {.lex_state = 119}, - [259] = {.lex_state = 119}, + [255] = {.lex_state = 119}, + [256] = {.lex_state = 119}, + [257] = {.lex_state = 119}, + [258] = {.lex_state = 47}, + [259] = {.lex_state = 47}, [260] = {.lex_state = 47}, - [261] = {.lex_state = 47}, - [262] = {.lex_state = 47}, + [261] = {.lex_state = 119}, + [262] = {.lex_state = 119}, [263] = {.lex_state = 47}, [264] = {.lex_state = 47}, [265] = {.lex_state = 47}, - [266] = {.lex_state = 119}, + [266] = {.lex_state = 47}, [267] = {.lex_state = 47}, - [268] = {.lex_state = 119}, - [269] = {.lex_state = 47}, - [270] = {.lex_state = 47}, + [268] = {.lex_state = 47}, + [269] = {.lex_state = 119}, + [270] = {.lex_state = 119}, [271] = {.lex_state = 47}, [272] = {.lex_state = 119}, - [273] = {.lex_state = 119}, - [274] = {.lex_state = 119}, + [273] = {.lex_state = 47}, + [274] = {.lex_state = 47}, [275] = {.lex_state = 47}, [276] = {.lex_state = 119}, [277] = {.lex_state = 119}, @@ -9683,36 +9706,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [281] = {.lex_state = 119}, [282] = {.lex_state = 119}, [283] = {.lex_state = 119}, - [284] = {.lex_state = 47}, - [285] = {.lex_state = 47}, - [286] = {.lex_state = 47}, - [287] = {.lex_state = 47}, + [284] = {.lex_state = 119}, + [285] = {.lex_state = 119}, + [286] = {.lex_state = 119}, + [287] = {.lex_state = 119}, [288] = {.lex_state = 47}, [289] = {.lex_state = 47}, - [290] = {.lex_state = 119}, + [290] = {.lex_state = 47}, [291] = {.lex_state = 47}, - [292] = {.lex_state = 119}, + [292] = {.lex_state = 47}, [293] = {.lex_state = 119}, - [294] = {.lex_state = 119}, + [294] = {.lex_state = 47}, [295] = {.lex_state = 119}, - [296] = {.lex_state = 47}, - [297] = {.lex_state = 47}, - [298] = {.lex_state = 47}, - [299] = {.lex_state = 119}, + [296] = {.lex_state = 119}, + [297] = {.lex_state = 119}, + [298] = {.lex_state = 119}, + [299] = {.lex_state = 47}, [300] = {.lex_state = 47}, - [301] = {.lex_state = 47}, + [301] = {.lex_state = 119}, [302] = {.lex_state = 47}, [303] = {.lex_state = 47}, - [304] = {.lex_state = 119}, - [305] = {.lex_state = 119}, + [304] = {.lex_state = 47}, + [305] = {.lex_state = 47}, [306] = {.lex_state = 119}, - [307] = {.lex_state = 119}, + [307] = {.lex_state = 47}, [308] = {.lex_state = 47}, [309] = {.lex_state = 119}, [310] = {.lex_state = 119}, - [311] = {.lex_state = 44}, + [311] = {.lex_state = 119}, [312] = {.lex_state = 44}, - [313] = {.lex_state = 119}, + [313] = {.lex_state = 44}, [314] = {.lex_state = 119}, [315] = {.lex_state = 119}, [316] = {.lex_state = 119}, @@ -9797,15 +9820,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [395] = {.lex_state = 119}, [396] = {.lex_state = 119}, [397] = {.lex_state = 119}, - [398] = {.lex_state = 44}, + [398] = {.lex_state = 119}, [399] = {.lex_state = 44}, - [400] = {.lex_state = 119}, + [400] = {.lex_state = 44}, [401] = {.lex_state = 49}, [402] = {.lex_state = 49}, - [403] = {.lex_state = 49}, + [403] = {.lex_state = 119}, [404] = {.lex_state = 49}, [405] = {.lex_state = 49}, - [406] = {.lex_state = 119}, + [406] = {.lex_state = 49}, [407] = {.lex_state = 49}, [408] = {.lex_state = 49}, [409] = {.lex_state = 49}, @@ -9839,26 +9862,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [437] = {.lex_state = 53}, [438] = {.lex_state = 53}, [439] = {.lex_state = 53}, - [440] = {.lex_state = 119}, - [441] = {.lex_state = 53}, + [440] = {.lex_state = 53}, + [441] = {.lex_state = 119}, [442] = {.lex_state = 119}, - [443] = {.lex_state = 119}, + [443] = {.lex_state = 53}, [444] = {.lex_state = 119}, - [445] = {.lex_state = 53}, + [445] = {.lex_state = 119}, [446] = {.lex_state = 52}, - [447] = {.lex_state = 52}, + [447] = {.lex_state = 57}, [448] = {.lex_state = 52}, [449] = {.lex_state = 57}, [450] = {.lex_state = 57}, - [451] = {.lex_state = 57}, + [451] = {.lex_state = 52}, [452] = {.lex_state = 119}, [453] = {.lex_state = 119}, [454] = {.lex_state = 119}, [455] = {.lex_state = 53}, - [456] = {.lex_state = 119}, - [457] = {.lex_state = 119}, - [458] = {.lex_state = 119}, - [459] = {.lex_state = 119}, + [456] = {.lex_state = 53}, + [457] = {.lex_state = 53}, + [458] = {.lex_state = 53}, + [459] = {.lex_state = 49}, [460] = {.lex_state = 119}, [461] = {.lex_state = 119}, [462] = {.lex_state = 119}, @@ -9867,19 +9890,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [465] = {.lex_state = 119}, [466] = {.lex_state = 119}, [467] = {.lex_state = 119}, - [468] = {.lex_state = 53}, + [468] = {.lex_state = 119}, [469] = {.lex_state = 119}, - [470] = {.lex_state = 53}, + [470] = {.lex_state = 119}, [471] = {.lex_state = 119}, [472] = {.lex_state = 119}, [473] = {.lex_state = 119}, [474] = {.lex_state = 119}, - [475] = {.lex_state = 53}, + [475] = {.lex_state = 119}, [476] = {.lex_state = 119}, [477] = {.lex_state = 119}, [478] = {.lex_state = 119}, [479] = {.lex_state = 119}, - [480] = {.lex_state = 49}, + [480] = {.lex_state = 119}, [481] = {.lex_state = 119}, [482] = {.lex_state = 119}, [483] = {.lex_state = 119}, @@ -10019,21 +10042,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 49}, [618] = {.lex_state = 49}, [619] = {.lex_state = 49}, - [620] = {.lex_state = 49}, + [620] = {.lex_state = 53}, [621] = {.lex_state = 49}, - [622] = {.lex_state = 50}, + [622] = {.lex_state = 49}, [623] = {.lex_state = 50}, [624] = {.lex_state = 50}, [625] = {.lex_state = 53}, - [626] = {.lex_state = 50}, - [627] = {.lex_state = 50}, - [628] = {.lex_state = 50}, - [629] = {.lex_state = 50}, - [630] = {.lex_state = 50}, - [631] = {.lex_state = 50}, - [632] = {.lex_state = 50}, + [626] = {.lex_state = 53}, + [627] = {.lex_state = 53}, + [628] = {.lex_state = 53}, + [629] = {.lex_state = 53}, + [630] = {.lex_state = 53}, + [631] = {.lex_state = 53}, + [632] = {.lex_state = 53}, [633] = {.lex_state = 53}, - [634] = {.lex_state = 53}, + [634] = {.lex_state = 50}, [635] = {.lex_state = 53}, [636] = {.lex_state = 53}, [637] = {.lex_state = 53}, @@ -10041,27 +10064,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [639] = {.lex_state = 53}, [640] = {.lex_state = 53}, [641] = {.lex_state = 53}, - [642] = {.lex_state = 53}, - [643] = {.lex_state = 53}, - [644] = {.lex_state = 53}, + [642] = {.lex_state = 50}, + [643] = {.lex_state = 50}, + [644] = {.lex_state = 50}, [645] = {.lex_state = 53}, - [646] = {.lex_state = 53}, - [647] = {.lex_state = 53}, - [648] = {.lex_state = 53}, - [649] = {.lex_state = 53}, + [646] = {.lex_state = 50}, + [647] = {.lex_state = 50}, + [648] = {.lex_state = 50}, + [649] = {.lex_state = 50}, [650] = {.lex_state = 53}, [651] = {.lex_state = 53}, [652] = {.lex_state = 53}, [653] = {.lex_state = 53}, - [654] = {.lex_state = 49}, - [655] = {.lex_state = 50}, + [654] = {.lex_state = 53}, + [655] = {.lex_state = 119}, [656] = {.lex_state = 119}, - [657] = {.lex_state = 53}, - [658] = {.lex_state = 119}, + [657] = {.lex_state = 119}, + [658] = {.lex_state = 50}, [659] = {.lex_state = 119}, - [660] = {.lex_state = 119}, - [661] = {.lex_state = 50}, - [662] = {.lex_state = 50}, + [660] = {.lex_state = 49}, + [661] = {.lex_state = 53}, + [662] = {.lex_state = 53}, [663] = {.lex_state = 50}, [664] = {.lex_state = 50}, [665] = {.lex_state = 50}, @@ -10069,7 +10092,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [667] = {.lex_state = 50}, [668] = {.lex_state = 50}, [669] = {.lex_state = 50}, - [670] = {.lex_state = 50}, + [670] = {.lex_state = 53}, [671] = {.lex_state = 50}, [672] = {.lex_state = 50}, [673] = {.lex_state = 50}, @@ -10077,35 +10100,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [675] = {.lex_state = 50}, [676] = {.lex_state = 50}, [677] = {.lex_state = 50}, - [678] = {.lex_state = 53}, - [679] = {.lex_state = 51}, - [680] = {.lex_state = 51}, - [681] = {.lex_state = 50}, + [678] = {.lex_state = 50}, + [679] = {.lex_state = 53}, + [680] = {.lex_state = 50}, + [681] = {.lex_state = 53}, [682] = {.lex_state = 53}, - [683] = {.lex_state = 51}, - [684] = {.lex_state = 49}, + [683] = {.lex_state = 53}, + [684] = {.lex_state = 53}, [685] = {.lex_state = 50}, - [686] = {.lex_state = 50}, + [686] = {.lex_state = 51}, [687] = {.lex_state = 50}, - [688] = {.lex_state = 50}, - [689] = {.lex_state = 53}, - [690] = {.lex_state = 51}, + [688] = {.lex_state = 51}, + [689] = {.lex_state = 50}, + [690] = {.lex_state = 50}, [691] = {.lex_state = 50}, - [692] = {.lex_state = 49}, - [693] = {.lex_state = 53}, - [694] = {.lex_state = 53}, - [695] = {.lex_state = 53}, - [696] = {.lex_state = 53}, - [697] = {.lex_state = 53}, - [698] = {.lex_state = 49}, - [699] = {.lex_state = 119}, - [700] = {.lex_state = 119}, + [692] = {.lex_state = 51}, + [693] = {.lex_state = 50}, + [694] = {.lex_state = 119}, + [695] = {.lex_state = 49}, + [696] = {.lex_state = 51}, + [697] = {.lex_state = 119}, + [698] = {.lex_state = 53}, + [699] = {.lex_state = 50}, + [700] = {.lex_state = 49}, [701] = {.lex_state = 53}, [702] = {.lex_state = 53}, [703] = {.lex_state = 53}, [704] = {.lex_state = 53}, [705] = {.lex_state = 53}, - [706] = {.lex_state = 53}, + [706] = {.lex_state = 49}, [707] = {.lex_state = 53}, [708] = {.lex_state = 53}, [709] = {.lex_state = 53}, @@ -10118,21 +10141,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [716] = {.lex_state = 53}, [717] = {.lex_state = 53}, [718] = {.lex_state = 53}, - [719] = {.lex_state = 49}, + [719] = {.lex_state = 53}, [720] = {.lex_state = 53}, [721] = {.lex_state = 53}, [722] = {.lex_state = 53}, - [723] = {.lex_state = 49}, + [723] = {.lex_state = 53}, [724] = {.lex_state = 53}, - [725] = {.lex_state = 49}, - [726] = {.lex_state = 49}, - [727] = {.lex_state = 49}, + [725] = {.lex_state = 53}, + [726] = {.lex_state = 53}, + [727] = {.lex_state = 53}, [728] = {.lex_state = 53}, - [729] = {.lex_state = 49}, + [729] = {.lex_state = 53}, [730] = {.lex_state = 53}, [731] = {.lex_state = 53}, [732] = {.lex_state = 53}, - [733] = {.lex_state = 53}, + [733] = {.lex_state = 49}, [734] = {.lex_state = 53}, [735] = {.lex_state = 53}, [736] = {.lex_state = 53}, @@ -10149,27 +10172,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [747] = {.lex_state = 53}, [748] = {.lex_state = 53}, [749] = {.lex_state = 53}, - [750] = {.lex_state = 53}, + [750] = {.lex_state = 49}, [751] = {.lex_state = 53}, [752] = {.lex_state = 53}, [753] = {.lex_state = 53}, [754] = {.lex_state = 53}, [755] = {.lex_state = 53}, [756] = {.lex_state = 53}, - [757] = {.lex_state = 53}, - [758] = {.lex_state = 49}, - [759] = {.lex_state = 50}, - [760] = {.lex_state = 50}, - [761] = {.lex_state = 50}, - [762] = {.lex_state = 50}, - [763] = {.lex_state = 50}, - [764] = {.lex_state = 50}, - [765] = {.lex_state = 50}, - [766] = {.lex_state = 50}, - [767] = {.lex_state = 50}, - [768] = {.lex_state = 50}, - [769] = {.lex_state = 50}, - [770] = {.lex_state = 50}, + [757] = {.lex_state = 49}, + [758] = {.lex_state = 53}, + [759] = {.lex_state = 53}, + [760] = {.lex_state = 49}, + [761] = {.lex_state = 49}, + [762] = {.lex_state = 53}, + [763] = {.lex_state = 49}, + [764] = {.lex_state = 53}, + [765] = {.lex_state = 53}, + [766] = {.lex_state = 53}, + [767] = {.lex_state = 53}, + [768] = {.lex_state = 53}, + [769] = {.lex_state = 53}, + [770] = {.lex_state = 53}, [771] = {.lex_state = 53}, [772] = {.lex_state = 53}, [773] = {.lex_state = 53}, @@ -10181,18 +10204,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [779] = {.lex_state = 53}, [780] = {.lex_state = 53}, [781] = {.lex_state = 53}, - [782] = {.lex_state = 53}, - [783] = {.lex_state = 53}, - [784] = {.lex_state = 53}, - [785] = {.lex_state = 53}, - [786] = {.lex_state = 53}, - [787] = {.lex_state = 53}, - [788] = {.lex_state = 53}, - [789] = {.lex_state = 53}, - [790] = {.lex_state = 53}, - [791] = {.lex_state = 53}, - [792] = {.lex_state = 53}, - [793] = {.lex_state = 53}, + [782] = {.lex_state = 50}, + [783] = {.lex_state = 50}, + [784] = {.lex_state = 50}, + [785] = {.lex_state = 50}, + [786] = {.lex_state = 50}, + [787] = {.lex_state = 50}, + [788] = {.lex_state = 50}, + [789] = {.lex_state = 50}, + [790] = {.lex_state = 50}, + [791] = {.lex_state = 50}, + [792] = {.lex_state = 50}, + [793] = {.lex_state = 50}, [794] = {.lex_state = 53}, [795] = {.lex_state = 53}, [796] = {.lex_state = 53}, @@ -10202,15 +10225,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [800] = {.lex_state = 53}, [801] = {.lex_state = 53}, [802] = {.lex_state = 53}, - [803] = {.lex_state = 53}, + [803] = {.lex_state = 49}, [804] = {.lex_state = 53}, [805] = {.lex_state = 53}, [806] = {.lex_state = 53}, [807] = {.lex_state = 53}, [808] = {.lex_state = 53}, - [809] = {.lex_state = 53}, + [809] = {.lex_state = 50}, [810] = {.lex_state = 53}, - [811] = {.lex_state = 50}, + [811] = {.lex_state = 53}, [812] = {.lex_state = 53}, [813] = {.lex_state = 53}, [814] = {.lex_state = 53}, @@ -10227,83 +10250,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [825] = {.lex_state = 53}, [826] = {.lex_state = 53}, [827] = {.lex_state = 53}, - [828] = {.lex_state = 49}, + [828] = {.lex_state = 52}, [829] = {.lex_state = 52}, - [830] = {.lex_state = 57}, + [830] = {.lex_state = 52}, [831] = {.lex_state = 52}, - [832] = {.lex_state = 57}, - [833] = {.lex_state = 57}, - [834] = {.lex_state = 57}, + [832] = {.lex_state = 52}, + [833] = {.lex_state = 52}, + [834] = {.lex_state = 52}, [835] = {.lex_state = 57}, [836] = {.lex_state = 57}, [837] = {.lex_state = 57}, [838] = {.lex_state = 57}, [839] = {.lex_state = 57}, [840] = {.lex_state = 57}, - [841] = {.lex_state = 57}, + [841] = {.lex_state = 52}, [842] = {.lex_state = 57}, - [843] = {.lex_state = 57}, - [844] = {.lex_state = 57}, - [845] = {.lex_state = 49}, - [846] = {.lex_state = 53}, + [843] = {.lex_state = 52}, + [844] = {.lex_state = 53}, + [845] = {.lex_state = 57}, + [846] = {.lex_state = 57}, [847] = {.lex_state = 57}, - [848] = {.lex_state = 57}, + [848] = {.lex_state = 52}, [849] = {.lex_state = 52}, - [850] = {.lex_state = 49}, + [850] = {.lex_state = 57}, [851] = {.lex_state = 49}, - [852] = {.lex_state = 53}, - [853] = {.lex_state = 49}, - [854] = {.lex_state = 49}, - [855] = {.lex_state = 49}, - [856] = {.lex_state = 49}, - [857] = {.lex_state = 49}, - [858] = {.lex_state = 49}, - [859] = {.lex_state = 49}, - [860] = {.lex_state = 49}, - [861] = {.lex_state = 49}, - [862] = {.lex_state = 52}, - [863] = {.lex_state = 49}, + [852] = {.lex_state = 57}, + [853] = {.lex_state = 57}, + [854] = {.lex_state = 57}, + [855] = {.lex_state = 57}, + [856] = {.lex_state = 57}, + [857] = {.lex_state = 57}, + [858] = {.lex_state = 57}, + [859] = {.lex_state = 52}, + [860] = {.lex_state = 53}, + [861] = {.lex_state = 52}, + [862] = {.lex_state = 49}, + [863] = {.lex_state = 52}, [864] = {.lex_state = 49}, [865] = {.lex_state = 52}, [866] = {.lex_state = 52}, [867] = {.lex_state = 52}, [868] = {.lex_state = 52}, - [869] = {.lex_state = 52}, - [870] = {.lex_state = 52}, - [871] = {.lex_state = 57}, + [869] = {.lex_state = 53}, + [870] = {.lex_state = 49}, + [871] = {.lex_state = 53}, [872] = {.lex_state = 49}, [873] = {.lex_state = 49}, [874] = {.lex_state = 49}, [875] = {.lex_state = 49}, - [876] = {.lex_state = 49}, - [877] = {.lex_state = 53}, - [878] = {.lex_state = 52}, - [879] = {.lex_state = 52}, - [880] = {.lex_state = 52}, - [881] = {.lex_state = 52}, + [876] = {.lex_state = 53}, + [877] = {.lex_state = 49}, + [878] = {.lex_state = 53}, + [879] = {.lex_state = 49}, + [880] = {.lex_state = 49}, + [881] = {.lex_state = 49}, [882] = {.lex_state = 49}, - [883] = {.lex_state = 52}, - [884] = {.lex_state = 57}, + [883] = {.lex_state = 49}, + [884] = {.lex_state = 49}, [885] = {.lex_state = 49}, - [886] = {.lex_state = 52}, - [887] = {.lex_state = 52}, - [888] = {.lex_state = 52}, + [886] = {.lex_state = 49}, + [887] = {.lex_state = 49}, + [888] = {.lex_state = 49}, [889] = {.lex_state = 49}, [890] = {.lex_state = 49}, [891] = {.lex_state = 53}, [892] = {.lex_state = 49}, - [893] = {.lex_state = 49}, - [894] = {.lex_state = 53}, + [893] = {.lex_state = 53}, + [894] = {.lex_state = 49}, [895] = {.lex_state = 53}, - [896] = {.lex_state = 53}, + [896] = {.lex_state = 49}, [897] = {.lex_state = 49}, - [898] = {.lex_state = 53}, + [898] = {.lex_state = 49}, [899] = {.lex_state = 49}, [900] = {.lex_state = 53}, - [901] = {.lex_state = 119}, - [902] = {.lex_state = 119}, - [903] = {.lex_state = 53}, - [904] = {.lex_state = 53}, + [901] = {.lex_state = 53}, + [902] = {.lex_state = 49}, + [903] = {.lex_state = 119}, + [904] = {.lex_state = 119}, [905] = {.lex_state = 119}, [906] = {.lex_state = 119}, [907] = {.lex_state = 119}, @@ -10333,28 +10356,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [931] = {.lex_state = 53}, [932] = {.lex_state = 53}, [933] = {.lex_state = 53}, - [934] = {.lex_state = 50}, + [934] = {.lex_state = 53}, [935] = {.lex_state = 53}, - [936] = {.lex_state = 50}, - [937] = {.lex_state = 50}, + [936] = {.lex_state = 53}, + [937] = {.lex_state = 53}, [938] = {.lex_state = 53}, - [939] = {.lex_state = 50}, + [939] = {.lex_state = 53}, [940] = {.lex_state = 53}, [941] = {.lex_state = 53}, [942] = {.lex_state = 50}, - [943] = {.lex_state = 53}, + [943] = {.lex_state = 50}, [944] = {.lex_state = 50}, [945] = {.lex_state = 50}, [946] = {.lex_state = 50}, - [947] = {.lex_state = 53}, - [948] = {.lex_state = 53}, + [947] = {.lex_state = 50}, + [948] = {.lex_state = 50}, [949] = {.lex_state = 50}, [950] = {.lex_state = 50}, - [951] = {.lex_state = 53}, + [951] = {.lex_state = 50}, [952] = {.lex_state = 50}, [953] = {.lex_state = 50}, - [954] = {.lex_state = 50}, - [955] = {.lex_state = 53}, + [954] = {.lex_state = 53}, + [955] = {.lex_state = 50}, [956] = {.lex_state = 53}, [957] = {.lex_state = 53}, [958] = {.lex_state = 53}, @@ -10383,24 +10406,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [981] = {.lex_state = 53}, [982] = {.lex_state = 53}, [983] = {.lex_state = 53}, - [984] = {.lex_state = 52}, - [985] = {.lex_state = 52}, + [984] = {.lex_state = 53}, + [985] = {.lex_state = 53}, [986] = {.lex_state = 53}, - [987] = {.lex_state = 49}, - [988] = {.lex_state = 53}, - [989] = {.lex_state = 53}, - [990] = {.lex_state = 53}, + [987] = {.lex_state = 53}, + [988] = {.lex_state = 49}, + [989] = {.lex_state = 52}, + [990] = {.lex_state = 52}, [991] = {.lex_state = 52}, - [992] = {.lex_state = 52}, - [993] = {.lex_state = 49}, - [994] = {.lex_state = 49}, - [995] = {.lex_state = 49}, + [992] = {.lex_state = 53}, + [993] = {.lex_state = 53}, + [994] = {.lex_state = 52}, + [995] = {.lex_state = 53}, [996] = {.lex_state = 49}, [997] = {.lex_state = 49}, [998] = {.lex_state = 49}, [999] = {.lex_state = 53}, [1000] = {.lex_state = 53}, - [1001] = {.lex_state = 53}, + [1001] = {.lex_state = 49}, [1002] = {.lex_state = 49}, [1003] = {.lex_state = 49}, [1004] = {.lex_state = 49}, @@ -10421,7 +10444,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1019] = {.lex_state = 49}, [1020] = {.lex_state = 49}, [1021] = {.lex_state = 49}, - [1022] = {.lex_state = 53}, + [1022] = {.lex_state = 49}, [1023] = {.lex_state = 49}, [1024] = {.lex_state = 49}, [1025] = {.lex_state = 49}, @@ -10444,7 +10467,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1042] = {.lex_state = 49}, [1043] = {.lex_state = 49}, [1044] = {.lex_state = 49}, - [1045] = {.lex_state = 53}, + [1045] = {.lex_state = 49}, [1046] = {.lex_state = 49}, [1047] = {.lex_state = 49}, [1048] = {.lex_state = 49}, @@ -10454,39 +10477,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1052] = {.lex_state = 49}, [1053] = {.lex_state = 49}, [1054] = {.lex_state = 49}, - [1055] = {.lex_state = 49}, + [1055] = {.lex_state = 53}, [1056] = {.lex_state = 49}, [1057] = {.lex_state = 49}, [1058] = {.lex_state = 49}, [1059] = {.lex_state = 49}, - [1060] = {.lex_state = 49}, + [1060] = {.lex_state = 53}, [1061] = {.lex_state = 49}, - [1062] = {.lex_state = 49}, - [1063] = {.lex_state = 49}, + [1062] = {.lex_state = 53}, + [1063] = {.lex_state = 53}, [1064] = {.lex_state = 49}, [1065] = {.lex_state = 49}, - [1066] = {.lex_state = 49}, + [1066] = {.lex_state = 53}, [1067] = {.lex_state = 49}, [1068] = {.lex_state = 49}, [1069] = {.lex_state = 49}, [1070] = {.lex_state = 49}, - [1071] = {.lex_state = 49}, - [1072] = {.lex_state = 49}, - [1073] = {.lex_state = 53}, - [1074] = {.lex_state = 53}, - [1075] = {.lex_state = 53}, - [1076] = {.lex_state = 53}, + [1071] = {.lex_state = 53}, + [1072] = {.lex_state = 53}, + [1073] = {.lex_state = 49}, + [1074] = {.lex_state = 49}, + [1075] = {.lex_state = 49}, + [1076] = {.lex_state = 49}, [1077] = {.lex_state = 53}, - [1078] = {.lex_state = 49}, + [1078] = {.lex_state = 53}, [1079] = {.lex_state = 49}, - [1080] = {.lex_state = 53}, - [1081] = {.lex_state = 53}, + [1080] = {.lex_state = 49}, + [1081] = {.lex_state = 49}, [1082] = {.lex_state = 53}, [1083] = {.lex_state = 53}, [1084] = {.lex_state = 53}, [1085] = {.lex_state = 53}, - [1086] = {.lex_state = 53}, - [1087] = {.lex_state = 53}, + [1086] = {.lex_state = 49}, + [1087] = {.lex_state = 49}, [1088] = {.lex_state = 53}, [1089] = {.lex_state = 53}, [1090] = {.lex_state = 53}, @@ -10496,45 +10519,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1094] = {.lex_state = 53}, [1095] = {.lex_state = 53}, [1096] = {.lex_state = 53}, - [1097] = {.lex_state = 53}, - [1098] = {.lex_state = 52}, + [1097] = {.lex_state = 52}, + [1098] = {.lex_state = 53}, [1099] = {.lex_state = 53}, [1100] = {.lex_state = 53}, [1101] = {.lex_state = 53}, [1102] = {.lex_state = 53}, - [1103] = {.lex_state = 52}, + [1103] = {.lex_state = 53}, [1104] = {.lex_state = 53}, - [1105] = {.lex_state = 52}, + [1105] = {.lex_state = 53}, [1106] = {.lex_state = 53}, [1107] = {.lex_state = 53}, [1108] = {.lex_state = 53}, [1109] = {.lex_state = 53}, - [1110] = {.lex_state = 48}, + [1110] = {.lex_state = 53}, [1111] = {.lex_state = 53}, - [1112] = {.lex_state = 53}, + [1112] = {.lex_state = 52}, [1113] = {.lex_state = 53}, - [1114] = {.lex_state = 52}, - [1115] = {.lex_state = 25}, + [1114] = {.lex_state = 53}, + [1115] = {.lex_state = 53}, [1116] = {.lex_state = 53}, - [1117] = {.lex_state = 53}, + [1117] = {.lex_state = 48}, [1118] = {.lex_state = 53}, - [1119] = {.lex_state = 48}, + [1119] = {.lex_state = 52}, [1120] = {.lex_state = 53}, - [1121] = {.lex_state = 53}, + [1121] = {.lex_state = 25}, [1122] = {.lex_state = 53}, - [1123] = {.lex_state = 53}, + [1123] = {.lex_state = 48}, [1124] = {.lex_state = 53}, - [1125] = {.lex_state = 48}, + [1125] = {.lex_state = 53}, [1126] = {.lex_state = 53}, [1127] = {.lex_state = 53}, - [1128] = {.lex_state = 53}, - [1129] = {.lex_state = 53}, + [1128] = {.lex_state = 48}, + [1129] = {.lex_state = 52}, [1130] = {.lex_state = 48}, [1131] = {.lex_state = 48}, [1132] = {.lex_state = 48}, [1133] = {.lex_state = 48}, [1134] = {.lex_state = 48}, - [1135] = {.lex_state = 53}, + [1135] = {.lex_state = 48}, [1136] = {.lex_state = 48}, [1137] = {.lex_state = 48}, [1138] = {.lex_state = 48}, @@ -10545,78 +10568,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1143] = {.lex_state = 48}, [1144] = {.lex_state = 48}, [1145] = {.lex_state = 48}, - [1146] = {.lex_state = 52}, + [1146] = {.lex_state = 48}, [1147] = {.lex_state = 48}, [1148] = {.lex_state = 48}, - [1149] = {.lex_state = 48}, - [1150] = {.lex_state = 52}, + [1149] = {.lex_state = 53}, + [1150] = {.lex_state = 48}, [1151] = {.lex_state = 52}, - [1152] = {.lex_state = 52}, + [1152] = {.lex_state = 48}, [1153] = {.lex_state = 48}, [1154] = {.lex_state = 52}, - [1155] = {.lex_state = 48}, + [1155] = {.lex_state = 52}, [1156] = {.lex_state = 52}, - [1157] = {.lex_state = 48}, + [1157] = {.lex_state = 52}, [1158] = {.lex_state = 48}, [1159] = {.lex_state = 48}, [1160] = {.lex_state = 52}, - [1161] = {.lex_state = 52}, + [1161] = {.lex_state = 48}, [1162] = {.lex_state = 52}, [1163] = {.lex_state = 48}, [1164] = {.lex_state = 48}, [1165] = {.lex_state = 52}, [1166] = {.lex_state = 52}, [1167] = {.lex_state = 52}, - [1168] = {.lex_state = 52}, - [1169] = {.lex_state = 48}, - [1170] = {.lex_state = 48}, - [1171] = {.lex_state = 48}, + [1168] = {.lex_state = 48}, + [1169] = {.lex_state = 52}, + [1170] = {.lex_state = 52}, + [1171] = {.lex_state = 52}, [1172] = {.lex_state = 48}, - [1173] = {.lex_state = 52}, - [1174] = {.lex_state = 48}, + [1173] = {.lex_state = 48}, + [1174] = {.lex_state = 52}, [1175] = {.lex_state = 48}, - [1176] = {.lex_state = 48}, + [1176] = {.lex_state = 52}, [1177] = {.lex_state = 48}, [1178] = {.lex_state = 48}, [1179] = {.lex_state = 48}, [1180] = {.lex_state = 48}, - [1181] = {.lex_state = 48}, - [1182] = {.lex_state = 52}, - [1183] = {.lex_state = 52}, + [1181] = {.lex_state = 53}, + [1182] = {.lex_state = 48}, + [1183] = {.lex_state = 48}, [1184] = {.lex_state = 48}, [1185] = {.lex_state = 48}, - [1186] = {.lex_state = 25}, + [1186] = {.lex_state = 52}, [1187] = {.lex_state = 25}, [1188] = {.lex_state = 25}, [1189] = {.lex_state = 25}, [1190] = {.lex_state = 52}, - [1191] = {.lex_state = 25}, + [1191] = {.lex_state = 53}, [1192] = {.lex_state = 25}, [1193] = {.lex_state = 25}, [1194] = {.lex_state = 25}, - [1195] = {.lex_state = 53}, + [1195] = {.lex_state = 25}, [1196] = {.lex_state = 25}, - [1197] = {.lex_state = 25}, + [1197] = {.lex_state = 53}, [1198] = {.lex_state = 25}, [1199] = {.lex_state = 25}, [1200] = {.lex_state = 25}, [1201] = {.lex_state = 25}, - [1202] = {.lex_state = 25}, + [1202] = {.lex_state = 53}, [1203] = {.lex_state = 25}, - [1204] = {.lex_state = 53}, + [1204] = {.lex_state = 25}, [1205] = {.lex_state = 25}, [1206] = {.lex_state = 25}, - [1207] = {.lex_state = 52}, + [1207] = {.lex_state = 53}, [1208] = {.lex_state = 25}, [1209] = {.lex_state = 25}, [1210] = {.lex_state = 25}, - [1211] = {.lex_state = 53}, + [1211] = {.lex_state = 52}, [1212] = {.lex_state = 25}, [1213] = {.lex_state = 25}, [1214] = {.lex_state = 25}, [1215] = {.lex_state = 25}, [1216] = {.lex_state = 25}, - [1217] = {.lex_state = 53}, + [1217] = {.lex_state = 25}, [1218] = {.lex_state = 25}, [1219] = {.lex_state = 25}, [1220] = {.lex_state = 25}, @@ -10624,7 +10647,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1222] = {.lex_state = 25}, [1223] = {.lex_state = 25}, [1224] = {.lex_state = 25}, - [1225] = {.lex_state = 53}, + [1225] = {.lex_state = 25}, [1226] = {.lex_state = 53}, [1227] = {.lex_state = 53}, [1228] = {.lex_state = 53}, @@ -10644,33 +10667,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1242] = {.lex_state = 53}, [1243] = {.lex_state = 53}, [1244] = {.lex_state = 53}, - [1245] = {.lex_state = 53}, - [1246] = {.lex_state = 53}, - [1247] = {.lex_state = 50}, - [1248] = {.lex_state = 50}, + [1245] = {.lex_state = 50}, + [1246] = {.lex_state = 50}, + [1247] = {.lex_state = 53}, + [1248] = {.lex_state = 53}, [1249] = {.lex_state = 53}, [1250] = {.lex_state = 53}, [1251] = {.lex_state = 53}, - [1252] = {.lex_state = 50}, - [1253] = {.lex_state = 53}, + [1252] = {.lex_state = 53}, + [1253] = {.lex_state = 50}, [1254] = {.lex_state = 53}, [1255] = {.lex_state = 53}, [1256] = {.lex_state = 50}, [1257] = {.lex_state = 53}, - [1258] = {.lex_state = 56}, + [1258] = {.lex_state = 53}, [1259] = {.lex_state = 53}, - [1260] = {.lex_state = 56}, + [1260] = {.lex_state = 53}, [1261] = {.lex_state = 53}, [1262] = {.lex_state = 53}, [1263] = {.lex_state = 53}, [1264] = {.lex_state = 53}, [1265] = {.lex_state = 53}, - [1266] = {.lex_state = 53}, + [1266] = {.lex_state = 56}, [1267] = {.lex_state = 53}, [1268] = {.lex_state = 53}, [1269] = {.lex_state = 53}, [1270] = {.lex_state = 53}, - [1271] = {.lex_state = 53}, + [1271] = {.lex_state = 56}, [1272] = {.lex_state = 53}, [1273] = {.lex_state = 53}, [1274] = {.lex_state = 53}, @@ -10680,148 +10703,148 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1278] = {.lex_state = 53}, [1279] = {.lex_state = 53}, [1280] = {.lex_state = 53}, - [1281] = {.lex_state = 50}, + [1281] = {.lex_state = 53}, [1282] = {.lex_state = 53}, - [1283] = {.lex_state = 53}, + [1283] = {.lex_state = 50}, [1284] = {.lex_state = 49}, - [1285] = {.lex_state = 50}, - [1286] = {.lex_state = 50}, + [1285] = {.lex_state = 53}, + [1286] = {.lex_state = 56}, [1287] = {.lex_state = 50}, - [1288] = {.lex_state = 53}, + [1288] = {.lex_state = 50}, [1289] = {.lex_state = 50}, [1290] = {.lex_state = 50}, - [1291] = {.lex_state = 50}, - [1292] = {.lex_state = 56}, + [1291] = {.lex_state = 53}, + [1292] = {.lex_state = 50}, [1293] = {.lex_state = 53}, [1294] = {.lex_state = 53}, - [1295] = {.lex_state = 53}, + [1295] = {.lex_state = 50}, [1296] = {.lex_state = 50}, - [1297] = {.lex_state = 50}, + [1297] = {.lex_state = 53}, [1298] = {.lex_state = 53}, [1299] = {.lex_state = 53}, [1300] = {.lex_state = 53}, - [1301] = {.lex_state = 53}, + [1301] = {.lex_state = 50}, [1302] = {.lex_state = 50}, [1303] = {.lex_state = 50}, - [1304] = {.lex_state = 50}, - [1305] = {.lex_state = 50}, - [1306] = {.lex_state = 53}, - [1307] = {.lex_state = 53}, + [1304] = {.lex_state = 53}, + [1305] = {.lex_state = 53}, + [1306] = {.lex_state = 50}, + [1307] = {.lex_state = 50}, [1308] = {.lex_state = 53}, [1309] = {.lex_state = 50}, - [1310] = {.lex_state = 53}, + [1310] = {.lex_state = 0}, [1311] = {.lex_state = 53}, [1312] = {.lex_state = 53}, [1313] = {.lex_state = 53}, - [1314] = {.lex_state = 119}, + [1314] = {.lex_state = 53}, [1315] = {.lex_state = 53}, - [1316] = {.lex_state = 0}, + [1316] = {.lex_state = 53}, [1317] = {.lex_state = 0}, [1318] = {.lex_state = 53}, [1319] = {.lex_state = 119}, [1320] = {.lex_state = 53}, [1321] = {.lex_state = 119}, - [1322] = {.lex_state = 53}, + [1322] = {.lex_state = 119}, [1323] = {.lex_state = 53}, - [1324] = {.lex_state = 53}, + [1324] = {.lex_state = 119}, [1325] = {.lex_state = 53}, [1326] = {.lex_state = 53}, [1327] = {.lex_state = 53}, - [1328] = {.lex_state = 119}, - [1329] = {.lex_state = 54}, - [1330] = {.lex_state = 49}, - [1331] = {.lex_state = 53}, - [1332] = {.lex_state = 53}, + [1328] = {.lex_state = 53}, + [1329] = {.lex_state = 49}, + [1330] = {.lex_state = 119}, + [1331] = {.lex_state = 119}, + [1332] = {.lex_state = 54}, [1333] = {.lex_state = 119}, [1334] = {.lex_state = 49}, [1335] = {.lex_state = 53}, [1336] = {.lex_state = 119}, - [1337] = {.lex_state = 119}, - [1338] = {.lex_state = 54}, - [1339] = {.lex_state = 119}, + [1337] = {.lex_state = 53}, + [1338] = {.lex_state = 119}, + [1339] = {.lex_state = 54}, [1340] = {.lex_state = 119}, [1341] = {.lex_state = 54}, [1342] = {.lex_state = 119}, - [1343] = {.lex_state = 54}, + [1343] = {.lex_state = 53}, [1344] = {.lex_state = 119}, - [1345] = {.lex_state = 49}, - [1346] = {.lex_state = 119}, - [1347] = {.lex_state = 119}, - [1348] = {.lex_state = 53}, + [1345] = {.lex_state = 119}, + [1346] = {.lex_state = 54}, + [1347] = {.lex_state = 49}, + [1348] = {.lex_state = 0}, [1349] = {.lex_state = 119}, - [1350] = {.lex_state = 53}, - [1351] = {.lex_state = 119}, - [1352] = {.lex_state = 119}, + [1350] = {.lex_state = 119}, + [1351] = {.lex_state = 53}, + [1352] = {.lex_state = 53}, [1353] = {.lex_state = 119}, [1354] = {.lex_state = 119}, [1355] = {.lex_state = 119}, [1356] = {.lex_state = 53}, - [1357] = {.lex_state = 50}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 119}, - [1360] = {.lex_state = 53}, + [1357] = {.lex_state = 119}, + [1358] = {.lex_state = 50}, + [1359] = {.lex_state = 53}, + [1360] = {.lex_state = 119}, [1361] = {.lex_state = 50}, - [1362] = {.lex_state = 53}, + [1362] = {.lex_state = 119}, [1363] = {.lex_state = 53}, - [1364] = {.lex_state = 53}, + [1364] = {.lex_state = 50}, [1365] = {.lex_state = 119}, [1366] = {.lex_state = 119}, - [1367] = {.lex_state = 119}, + [1367] = {.lex_state = 53}, [1368] = {.lex_state = 119}, - [1369] = {.lex_state = 50}, + [1369] = {.lex_state = 53}, [1370] = {.lex_state = 53}, - [1371] = {.lex_state = 53}, - [1372] = {.lex_state = 119}, - [1373] = {.lex_state = 119}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 53}, + [1371] = {.lex_state = 119}, + [1372] = {.lex_state = 53}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 119}, + [1375] = {.lex_state = 0}, [1376] = {.lex_state = 53}, [1377] = {.lex_state = 53}, - [1378] = {.lex_state = 53}, - [1379] = {.lex_state = 50}, - [1380] = {.lex_state = 119}, - [1381] = {.lex_state = 0}, + [1378] = {.lex_state = 119}, + [1379] = {.lex_state = 53}, + [1380] = {.lex_state = 53}, + [1381] = {.lex_state = 53}, [1382] = {.lex_state = 53}, - [1383] = {.lex_state = 119}, + [1383] = {.lex_state = 53}, [1384] = {.lex_state = 53}, - [1385] = {.lex_state = 0}, + [1385] = {.lex_state = 119}, [1386] = {.lex_state = 119}, - [1387] = {.lex_state = 53}, - [1388] = {.lex_state = 53}, - [1389] = {.lex_state = 53}, + [1387] = {.lex_state = 50}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 119}, [1390] = {.lex_state = 53}, [1391] = {.lex_state = 53}, [1392] = {.lex_state = 119}, - [1393] = {.lex_state = 53}, - [1394] = {.lex_state = 119}, + [1393] = {.lex_state = 119}, + [1394] = {.lex_state = 53}, [1395] = {.lex_state = 53}, - [1396] = {.lex_state = 119}, - [1397] = {.lex_state = 119}, - [1398] = {.lex_state = 53}, - [1399] = {.lex_state = 56}, - [1400] = {.lex_state = 56}, + [1396] = {.lex_state = 53}, + [1397] = {.lex_state = 53}, + [1398] = {.lex_state = 119}, + [1399] = {.lex_state = 50}, + [1400] = {.lex_state = 53}, [1401] = {.lex_state = 119}, - [1402] = {.lex_state = 56}, + [1402] = {.lex_state = 119}, [1403] = {.lex_state = 119}, - [1404] = {.lex_state = 119}, - [1405] = {.lex_state = 50}, - [1406] = {.lex_state = 53}, - [1407] = {.lex_state = 53}, + [1404] = {.lex_state = 53}, + [1405] = {.lex_state = 119}, + [1406] = {.lex_state = 56}, + [1407] = {.lex_state = 56}, [1408] = {.lex_state = 53}, - [1409] = {.lex_state = 53}, - [1410] = {.lex_state = 56}, - [1411] = {.lex_state = 53}, - [1412] = {.lex_state = 0}, + [1409] = {.lex_state = 56}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 56}, + [1412] = {.lex_state = 56}, [1413] = {.lex_state = 53}, [1414] = {.lex_state = 53}, - [1415] = {.lex_state = 53}, - [1416] = {.lex_state = 53}, + [1415] = {.lex_state = 56}, + [1416] = {.lex_state = 119}, [1417] = {.lex_state = 53}, [1418] = {.lex_state = 56}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 56}, + [1419] = {.lex_state = 53}, + [1420] = {.lex_state = 53}, [1421] = {.lex_state = 56}, - [1422] = {.lex_state = 53}, + [1422] = {.lex_state = 0}, [1423] = {.lex_state = 119}, [1424] = {.lex_state = 56}, [1425] = {.lex_state = 56}, @@ -10829,117 +10852,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1427] = {.lex_state = 53}, [1428] = {.lex_state = 53}, [1429] = {.lex_state = 53}, - [1430] = {.lex_state = 56}, + [1430] = {.lex_state = 53}, [1431] = {.lex_state = 119}, - [1432] = {.lex_state = 119}, + [1432] = {.lex_state = 53}, [1433] = {.lex_state = 0}, [1434] = {.lex_state = 53}, - [1435] = {.lex_state = 119}, + [1435] = {.lex_state = 53}, [1436] = {.lex_state = 119}, [1437] = {.lex_state = 119}, - [1438] = {.lex_state = 119}, + [1438] = {.lex_state = 53}, [1439] = {.lex_state = 119}, [1440] = {.lex_state = 119}, [1441] = {.lex_state = 119}, - [1442] = {.lex_state = 50}, - [1443] = {.lex_state = 53}, - [1444] = {.lex_state = 45}, + [1442] = {.lex_state = 119}, + [1443] = {.lex_state = 119}, + [1444] = {.lex_state = 119}, [1445] = {.lex_state = 119}, [1446] = {.lex_state = 119}, [1447] = {.lex_state = 119}, - [1448] = {.lex_state = 119}, - [1449] = {.lex_state = 119}, + [1448] = {.lex_state = 53}, + [1449] = {.lex_state = 53}, [1450] = {.lex_state = 53}, - [1451] = {.lex_state = 53}, + [1451] = {.lex_state = 50}, [1452] = {.lex_state = 119}, [1453] = {.lex_state = 119}, - [1454] = {.lex_state = 119}, - [1455] = {.lex_state = 53}, + [1454] = {.lex_state = 45}, + [1455] = {.lex_state = 119}, [1456] = {.lex_state = 119}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 53}, + [1457] = {.lex_state = 53}, + [1458] = {.lex_state = 0}, [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 30}, - [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 32}, + [1460] = {.lex_state = 53}, + [1461] = {.lex_state = 53}, + [1462] = {.lex_state = 53}, [1463] = {.lex_state = 53}, - [1464] = {.lex_state = 53}, - [1465] = {.lex_state = 30}, - [1466] = {.lex_state = 30}, - [1467] = {.lex_state = 50}, - [1468] = {.lex_state = 32}, - [1469] = {.lex_state = 53}, - [1470] = {.lex_state = 119}, - [1471] = {.lex_state = 53}, - [1472] = {.lex_state = 0}, + [1464] = {.lex_state = 30}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 53}, + [1467] = {.lex_state = 53}, + [1468] = {.lex_state = 50}, + [1469] = {.lex_state = 50}, + [1470] = {.lex_state = 53}, + [1471] = {.lex_state = 119}, + [1472] = {.lex_state = 53}, [1473] = {.lex_state = 53}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 37}, - [1477] = {.lex_state = 30}, - [1478] = {.lex_state = 53}, - [1479] = {.lex_state = 53}, - [1480] = {.lex_state = 53}, + [1474] = {.lex_state = 53}, + [1475] = {.lex_state = 35}, + [1476] = {.lex_state = 53}, + [1477] = {.lex_state = 53}, + [1478] = {.lex_state = 30}, + [1479] = {.lex_state = 30}, + [1480] = {.lex_state = 30}, [1481] = {.lex_state = 53}, [1482] = {.lex_state = 53}, - [1483] = {.lex_state = 53}, - [1484] = {.lex_state = 53}, - [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 32}, + [1483] = {.lex_state = 0}, + [1484] = {.lex_state = 37}, + [1485] = {.lex_state = 53}, + [1486] = {.lex_state = 37}, [1487] = {.lex_state = 53}, - [1488] = {.lex_state = 53}, + [1488] = {.lex_state = 30}, [1489] = {.lex_state = 53}, - [1490] = {.lex_state = 53}, + [1490] = {.lex_state = 0}, [1491] = {.lex_state = 53}, - [1492] = {.lex_state = 50}, - [1493] = {.lex_state = 53}, + [1492] = {.lex_state = 53}, + [1493] = {.lex_state = 50}, [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 53}, - [1496] = {.lex_state = 53}, - [1497] = {.lex_state = 50}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 30}, [1498] = {.lex_state = 53}, - [1499] = {.lex_state = 53}, - [1500] = {.lex_state = 53}, - [1501] = {.lex_state = 50}, - [1502] = {.lex_state = 53}, - [1503] = {.lex_state = 45}, - [1504] = {.lex_state = 32}, - [1505] = {.lex_state = 37}, - [1506] = {.lex_state = 53}, - [1507] = {.lex_state = 53}, + [1499] = {.lex_state = 37}, + [1500] = {.lex_state = 50}, + [1501] = {.lex_state = 53}, + [1502] = {.lex_state = 37}, + [1503] = {.lex_state = 35}, + [1504] = {.lex_state = 30}, + [1505] = {.lex_state = 35}, + [1506] = {.lex_state = 37}, + [1507] = {.lex_state = 37}, [1508] = {.lex_state = 119}, - [1509] = {.lex_state = 37}, - [1510] = {.lex_state = 30}, - [1511] = {.lex_state = 32}, - [1512] = {.lex_state = 37}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 32}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 32}, - [1517] = {.lex_state = 30}, + [1509] = {.lex_state = 35}, + [1510] = {.lex_state = 53}, + [1511] = {.lex_state = 37}, + [1512] = {.lex_state = 53}, + [1513] = {.lex_state = 53}, + [1514] = {.lex_state = 53}, + [1515] = {.lex_state = 53}, + [1516] = {.lex_state = 53}, + [1517] = {.lex_state = 0}, [1518] = {.lex_state = 53}, - [1519] = {.lex_state = 30}, - [1520] = {.lex_state = 53}, - [1521] = {.lex_state = 37}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 45}, + [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 37}, + [1524] = {.lex_state = 0}, [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 53}, + [1526] = {.lex_state = 45}, [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 53}, - [1529] = {.lex_state = 34}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 0}, [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 45}, + [1531] = {.lex_state = 0}, [1532] = {.lex_state = 0}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 34}, - [1535] = {.lex_state = 45}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 53}, + [1537] = {.lex_state = 0}, [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 45}, - [1540] = {.lex_state = 45}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, [1541] = {.lex_state = 0}, [1542] = {.lex_state = 0}, [1543] = {.lex_state = 0}, @@ -10947,13 +10970,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1545] = {.lex_state = 0}, [1546] = {.lex_state = 0}, [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 53}, + [1548] = {.lex_state = 0}, [1549] = {.lex_state = 0}, [1550] = {.lex_state = 0}, [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 45}, + [1552] = {.lex_state = 53}, + [1553] = {.lex_state = 35}, + [1554] = {.lex_state = 53}, [1555] = {.lex_state = 0}, [1556] = {.lex_state = 0}, [1557] = {.lex_state = 0}, @@ -10961,24 +10984,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1559] = {.lex_state = 0}, [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 53}, - [1563] = {.lex_state = 45}, - [1564] = {.lex_state = 0}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 53}, [1565] = {.lex_state = 0}, [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 34}, + [1567] = {.lex_state = 45}, + [1568] = {.lex_state = 0}, [1569] = {.lex_state = 53}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 45}, - [1572] = {.lex_state = 0}, + [1570] = {.lex_state = 45}, + [1571] = {.lex_state = 0}, + [1572] = {.lex_state = 32}, [1573] = {.lex_state = 0}, [1574] = {.lex_state = 0}, [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 34}, + [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 0}, + [1578] = {.lex_state = 32}, + [1579] = {.lex_state = 32}, [1580] = {.lex_state = 0}, [1581] = {.lex_state = 0}, [1582] = {.lex_state = 0}, @@ -10991,395 +11014,395 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1589] = {.lex_state = 0}, [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 0}, + [1592] = {.lex_state = 53}, [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 0}, + [1596] = {.lex_state = 35}, [1597] = {.lex_state = 0}, - [1598] = {.lex_state = 0}, + [1598] = {.lex_state = 45}, [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, + [1601] = {.lex_state = 53}, [1602] = {.lex_state = 0}, [1603] = {.lex_state = 0}, [1604] = {.lex_state = 0}, [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 37}, + [1606] = {.lex_state = 53}, + [1607] = {.lex_state = 0}, [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 53}, - [1610] = {.lex_state = 53}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 32}, [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 53}, - [1613] = {.lex_state = 0}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 45}, [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 53}, - [1617] = {.lex_state = 0}, + [1615] = {.lex_state = 45}, + [1616] = {.lex_state = 0}, + [1617] = {.lex_state = 53}, [1618] = {.lex_state = 0}, [1619] = {.lex_state = 0}, [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 0}, + [1621] = {.lex_state = 53}, [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, + [1624] = {.lex_state = 53}, [1625] = {.lex_state = 0}, [1626] = {.lex_state = 0}, [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 0}, + [1628] = {.lex_state = 53}, [1629] = {.lex_state = 0}, [1630] = {.lex_state = 0}, [1631] = {.lex_state = 0}, [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 53}, + [1633] = {.lex_state = 0}, [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, [1636] = {.lex_state = 0}, [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, + [1638] = {.lex_state = 53}, + [1639] = {.lex_state = 45}, [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 53}, - [1642] = {.lex_state = 0}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 35}, [1643] = {.lex_state = 119}, - [1644] = {.lex_state = 0}, + [1644] = {.lex_state = 119}, [1645] = {.lex_state = 119}, [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 53}, - [1648] = {.lex_state = 33}, - [1649] = {.lex_state = 33}, - [1650] = {.lex_state = 33}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 33}, - [1653] = {.lex_state = 119}, - [1654] = {.lex_state = 53}, - [1655] = {.lex_state = 119}, - [1656] = {.lex_state = 119}, - [1657] = {.lex_state = 53}, - [1658] = {.lex_state = 119}, - [1659] = {.lex_state = 33}, + [1647] = {.lex_state = 0}, + [1648] = {.lex_state = 0}, + [1649] = {.lex_state = 53}, + [1650] = {.lex_state = 0}, + [1651] = {.lex_state = 31}, + [1652] = {.lex_state = 31}, + [1653] = {.lex_state = 0}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 0}, + [1656] = {.lex_state = 31}, + [1657] = {.lex_state = 0}, + [1658] = {.lex_state = 0}, + [1659] = {.lex_state = 119}, [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 33}, + [1661] = {.lex_state = 0}, [1662] = {.lex_state = 0}, [1663] = {.lex_state = 0}, [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 53}, + [1665] = {.lex_state = 0}, [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, + [1667] = {.lex_state = 31}, [1668] = {.lex_state = 0}, [1669] = {.lex_state = 119}, - [1670] = {.lex_state = 119}, - [1671] = {.lex_state = 33}, - [1672] = {.lex_state = 119}, - [1673] = {.lex_state = 33}, + [1670] = {.lex_state = 31}, + [1671] = {.lex_state = 0}, + [1672] = {.lex_state = 0}, + [1673] = {.lex_state = 0}, [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 119}, - [1676] = {.lex_state = 119}, - [1677] = {.lex_state = 53}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 119}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 119}, - [1682] = {.lex_state = 119}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 45}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 0}, + [1675] = {.lex_state = 31}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 31}, + [1678] = {.lex_state = 119}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 119}, + [1681] = {.lex_state = 45}, + [1682] = {.lex_state = 31}, + [1683] = {.lex_state = 31}, + [1684] = {.lex_state = 119}, + [1685] = {.lex_state = 31}, + [1686] = {.lex_state = 119}, [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 53}, + [1688] = {.lex_state = 119}, [1689] = {.lex_state = 119}, - [1690] = {.lex_state = 33}, + [1690] = {.lex_state = 119}, [1691] = {.lex_state = 119}, - [1692] = {.lex_state = 119}, - [1693] = {.lex_state = 33}, + [1692] = {.lex_state = 31}, + [1693] = {.lex_state = 53}, [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 33}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 119}, - [1700] = {.lex_state = 119}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 45}, + [1695] = {.lex_state = 31}, + [1696] = {.lex_state = 119}, + [1697] = {.lex_state = 53}, + [1698] = {.lex_state = 45}, + [1699] = {.lex_state = 0}, + [1700] = {.lex_state = 53}, + [1701] = {.lex_state = 31}, + [1702] = {.lex_state = 0}, [1703] = {.lex_state = 119}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, + [1704] = {.lex_state = 119}, + [1705] = {.lex_state = 53}, + [1706] = {.lex_state = 31}, [1707] = {.lex_state = 53}, - [1708] = {.lex_state = 33}, + [1708] = {.lex_state = 119}, [1709] = {.lex_state = 119}, - [1710] = {.lex_state = 119}, - [1711] = {.lex_state = 33}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 119}, - [1714] = {.lex_state = 45}, - [1715] = {.lex_state = 33}, - [1716] = {.lex_state = 33}, - [1717] = {.lex_state = 0}, - [1718] = {.lex_state = 119}, - [1719] = {.lex_state = 0}, + [1710] = {.lex_state = 53}, + [1711] = {.lex_state = 0}, + [1712] = {.lex_state = 119}, + [1713] = {.lex_state = 45}, + [1714] = {.lex_state = 119}, + [1715] = {.lex_state = 119}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 119}, + [1718] = {.lex_state = 0}, + [1719] = {.lex_state = 119}, [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0}, + [1721] = {.lex_state = 119}, [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 53}, - [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 119}, - [1726] = {.lex_state = 33}, + [1723] = {.lex_state = 31}, + [1724] = {.lex_state = 119}, + [1725] = {.lex_state = 31}, + [1726] = {.lex_state = 31}, [1727] = {.lex_state = 0}, [1728] = {.lex_state = 0}, - [1729] = {.lex_state = 33}, - [1730] = {.lex_state = 0}, + [1729] = {.lex_state = 0}, + [1730] = {.lex_state = 53}, [1731] = {.lex_state = 53}, - [1732] = {.lex_state = 0}, + [1732] = {.lex_state = 44}, [1733] = {.lex_state = 44}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, + [1734] = {.lex_state = 53}, + [1735] = {.lex_state = 44}, [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 53}, + [1737] = {.lex_state = 0}, [1738] = {.lex_state = 0}, [1739] = {.lex_state = 0}, [1740] = {.lex_state = 0}, [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 119}, + [1742] = {.lex_state = 0}, [1743] = {.lex_state = 44}, - [1744] = {.lex_state = 0}, + [1744] = {.lex_state = 119}, [1745] = {.lex_state = 44}, - [1746] = {.lex_state = 44}, - [1747] = {.lex_state = 53}, - [1748] = {.lex_state = 44}, - [1749] = {.lex_state = 0}, + [1746] = {.lex_state = 0}, + [1747] = {.lex_state = 0}, + [1748] = {.lex_state = 0}, + [1749] = {.lex_state = 32}, [1750] = {.lex_state = 0}, [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 34}, - [1755] = {.lex_state = 44}, - [1756] = {.lex_state = 34}, - [1757] = {.lex_state = 44}, - [1758] = {.lex_state = 34}, - [1759] = {.lex_state = 0}, + [1752] = {.lex_state = 119}, + [1753] = {.lex_state = 119}, + [1754] = {.lex_state = 32}, + [1755] = {.lex_state = 53}, + [1756] = {.lex_state = 44}, + [1757] = {.lex_state = 119}, + [1758] = {.lex_state = 32}, + [1759] = {.lex_state = 32}, [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 53}, - [1762] = {.lex_state = 44}, + [1761] = {.lex_state = 0}, + [1762] = {.lex_state = 0}, [1763] = {.lex_state = 53}, - [1764] = {.lex_state = 34}, - [1765] = {.lex_state = 34}, + [1764] = {.lex_state = 53}, + [1765] = {.lex_state = 32}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, + [1767] = {.lex_state = 44}, + [1768] = {.lex_state = 119}, [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 44}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 44}, - [1774] = {.lex_state = 34}, + [1770] = {.lex_state = 53}, + [1771] = {.lex_state = 53}, + [1772] = {.lex_state = 44}, + [1773] = {.lex_state = 0}, + [1774] = {.lex_state = 32}, [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 34}, + [1777] = {.lex_state = 32}, [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 34}, - [1782] = {.lex_state = 34}, - [1783] = {.lex_state = 34}, + [1779] = {.lex_state = 53}, + [1780] = {.lex_state = 53}, + [1781] = {.lex_state = 119}, + [1782] = {.lex_state = 32}, + [1783] = {.lex_state = 32}, [1784] = {.lex_state = 44}, [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 44}, - [1788] = {.lex_state = 44}, - [1789] = {.lex_state = 53}, - [1790] = {.lex_state = 34}, - [1791] = {.lex_state = 34}, - [1792] = {.lex_state = 44}, - [1793] = {.lex_state = 34}, - [1794] = {.lex_state = 0}, + [1786] = {.lex_state = 44}, + [1787] = {.lex_state = 0}, + [1788] = {.lex_state = 0}, + [1789] = {.lex_state = 0}, + [1790] = {.lex_state = 32}, + [1791] = {.lex_state = 32}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 32}, + [1794] = {.lex_state = 32}, [1795] = {.lex_state = 53}, [1796] = {.lex_state = 53}, - [1797] = {.lex_state = 119}, + [1797] = {.lex_state = 53}, [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 53}, + [1799] = {.lex_state = 44}, [1800] = {.lex_state = 44}, [1801] = {.lex_state = 0}, [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, + [1803] = {.lex_state = 32}, [1804] = {.lex_state = 53}, [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 44}, - [1807] = {.lex_state = 0}, + [1806] = {.lex_state = 53}, + [1807] = {.lex_state = 53}, [1808] = {.lex_state = 0}, [1809] = {.lex_state = 0}, [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, + [1811] = {.lex_state = 44}, [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 44}, - [1814] = {.lex_state = 34}, - [1815] = {.lex_state = 34}, - [1816] = {.lex_state = 44}, + [1813] = {.lex_state = 0}, + [1814] = {.lex_state = 0}, + [1815] = {.lex_state = 32}, + [1816] = {.lex_state = 32}, [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 44}, - [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 44}, + [1818] = {.lex_state = 32}, + [1819] = {.lex_state = 53}, + [1820] = {.lex_state = 0}, [1821] = {.lex_state = 0}, [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 53}, - [1824] = {.lex_state = 53}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 44}, - [1827] = {.lex_state = 44}, - [1828] = {.lex_state = 34}, - [1829] = {.lex_state = 53}, - [1830] = {.lex_state = 34}, - [1831] = {.lex_state = 0}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 32}, + [1825] = {.lex_state = 32}, + [1826] = {.lex_state = 0}, + [1827] = {.lex_state = 53}, + [1828] = {.lex_state = 44}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 0}, + [1831] = {.lex_state = 44}, [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 34}, - [1834] = {.lex_state = 53}, - [1835] = {.lex_state = 0}, + [1833] = {.lex_state = 0}, + [1834] = {.lex_state = 0}, + [1835] = {.lex_state = 44}, [1836] = {.lex_state = 0}, [1837] = {.lex_state = 53}, - [1838] = {.lex_state = 34}, + [1838] = {.lex_state = 0}, [1839] = {.lex_state = 44}, - [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, + [1840] = {.lex_state = 44}, + [1841] = {.lex_state = 53}, [1842] = {.lex_state = 53}, - [1843] = {.lex_state = 53}, + [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, [1846] = {.lex_state = 0}, [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 44}, + [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, [1850] = {.lex_state = 0}, [1851] = {.lex_state = 0}, [1852] = {.lex_state = 44}, - [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 34}, + [1853] = {.lex_state = 44}, + [1854] = {.lex_state = 53}, [1855] = {.lex_state = 0}, [1856] = {.lex_state = 53}, [1857] = {.lex_state = 44}, - [1858] = {.lex_state = 34}, - [1859] = {.lex_state = 119}, - [1860] = {.lex_state = 119}, - [1861] = {.lex_state = 34}, - [1862] = {.lex_state = 44}, + [1858] = {.lex_state = 44}, + [1859] = {.lex_state = 44}, + [1860] = {.lex_state = 44}, + [1861] = {.lex_state = 0}, + [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 44}, - [1866] = {.lex_state = 34}, - [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 53}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 119}, + [1864] = {.lex_state = 32}, + [1865] = {.lex_state = 53}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 44}, + [1868] = {.lex_state = 0}, + [1869] = {.lex_state = 53}, + [1870] = {.lex_state = 0}, [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 44}, + [1872] = {.lex_state = 0}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 44}, + [1874] = {.lex_state = 32}, + [1875] = {.lex_state = 0}, [1876] = {.lex_state = 53}, [1877] = {.lex_state = 53}, - [1878] = {.lex_state = 0}, + [1878] = {.lex_state = 32}, [1879] = {.lex_state = 44}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 34}, - [1882] = {.lex_state = 34}, - [1883] = {.lex_state = 44}, - [1884] = {.lex_state = 0}, + [1880] = {.lex_state = 44}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0}, + [1883] = {.lex_state = 0}, + [1884] = {.lex_state = 44}, [1885] = {.lex_state = 53}, - [1886] = {.lex_state = 53}, - [1887] = {.lex_state = 44}, - [1888] = {.lex_state = 34}, - [1889] = {.lex_state = 34}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 0}, + [1886] = {.lex_state = 32}, + [1887] = {.lex_state = 0}, + [1888] = {.lex_state = 44}, + [1889] = {.lex_state = 0}, + [1890] = {.lex_state = 32}, + [1891] = {.lex_state = 53}, + [1892] = {.lex_state = 44}, [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 44}, - [1895] = {.lex_state = 53}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 0}, [1896] = {.lex_state = 53}, [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 44}, - [1900] = {.lex_state = 44}, - [1901] = {.lex_state = 0}, + [1899] = {.lex_state = 53}, + [1900] = {.lex_state = 53}, + [1901] = {.lex_state = 44}, [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 0}, + [1903] = {.lex_state = 44}, [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, [1906] = {.lex_state = 53}, [1907] = {.lex_state = 53}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 53}, - [1910] = {.lex_state = 0}, + [1908] = {.lex_state = 119}, + [1909] = {.lex_state = 44}, + [1910] = {.lex_state = 53}, [1911] = {.lex_state = 0}, [1912] = {.lex_state = 53}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 44}, - [1916] = {.lex_state = 0}, + [1913] = {.lex_state = 44}, + [1914] = {.lex_state = 32}, + [1915] = {.lex_state = 0}, + [1916] = {.lex_state = 44}, [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 44}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 53}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 44}, - [1923] = {.lex_state = 119}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 44}, + [1918] = {.lex_state = 0}, + [1919] = {.lex_state = 44}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 44}, + [1922] = {.lex_state = 0}, + [1923] = {.lex_state = 44}, + [1924] = {.lex_state = 44}, + [1925] = {.lex_state = 0}, [1926] = {.lex_state = 0}, [1927] = {.lex_state = 53}, - [1928] = {.lex_state = 34}, + [1928] = {.lex_state = 0}, [1929] = {.lex_state = 44}, - [1930] = {.lex_state = 53}, + [1930] = {.lex_state = 119}, [1931] = {.lex_state = 53}, [1932] = {.lex_state = 53}, [1933] = {.lex_state = 44}, - [1934] = {.lex_state = 53}, - [1935] = {.lex_state = 53}, - [1936] = {.lex_state = 119}, - [1937] = {.lex_state = 53}, + [1934] = {.lex_state = 44}, + [1935] = {.lex_state = 32}, + [1936] = {.lex_state = 0}, + [1937] = {.lex_state = 0}, [1938] = {.lex_state = 119}, [1939] = {.lex_state = 119}, - [1940] = {.lex_state = 53}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 0}, - [1943] = {.lex_state = 44}, + [1940] = {.lex_state = 0}, + [1941] = {.lex_state = 119}, + [1942] = {.lex_state = 44}, + [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 44}, - [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 0}, + [1945] = {.lex_state = 0}, + [1946] = {.lex_state = 44}, + [1947] = {.lex_state = 44}, [1948] = {.lex_state = 53}, - [1949] = {.lex_state = 119}, - [1950] = {.lex_state = 0}, + [1949] = {.lex_state = 0}, + [1950] = {.lex_state = 44}, [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 53}, - [1953] = {.lex_state = 44}, - [1954] = {.lex_state = 119}, + [1952] = {.lex_state = 44}, + [1953] = {.lex_state = 0}, + [1954] = {.lex_state = 32}, [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 53}, + [1956] = {.lex_state = 44}, + [1957] = {.lex_state = 0}, [1958] = {.lex_state = 119}, - [1959] = {.lex_state = 34}, - [1960] = {.lex_state = 44}, + [1959] = {.lex_state = 44}, + [1960] = {.lex_state = 53}, [1961] = {.lex_state = 53}, [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 119}, - [1965] = {.lex_state = 44}, - [1966] = {.lex_state = 44}, - [1967] = {.lex_state = 44}, + [1963] = {.lex_state = 119}, + [1964] = {.lex_state = 44}, + [1965] = {.lex_state = 32}, + [1966] = {.lex_state = 32}, + [1967] = {.lex_state = 119}, [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 44}, - [1971] = {.lex_state = 34}, - [1972] = {.lex_state = 34}, - [1973] = {.lex_state = 44}, + [1969] = {.lex_state = 53}, + [1970] = {.lex_state = 53}, + [1971] = {.lex_state = 0}, + [1972] = {.lex_state = 32}, + [1973] = {.lex_state = 0}, [1974] = {.lex_state = 119}, - [1975] = {.lex_state = 53}, - [1976] = {.lex_state = 0}, + [1975] = {.lex_state = 32}, + [1976] = {.lex_state = 44}, [1977] = {.lex_state = 119}, - [1978] = {.lex_state = 119}, + [1978] = {.lex_state = 44}, [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 44}, + [1980] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -11468,6 +11491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1), [anon_sym__Noreturn] = ACTIONS(1), [anon_sym_noreturn] = ACTIONS(1), + [anon_sym__Nonnull] = ACTIONS(1), [anon_sym_alignas] = ACTIONS(1), [anon_sym__Alignas] = ACTIONS(1), [sym_primitive_type] = ACTIONS(1), @@ -11534,7 +11558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1786), + [sym_translation_unit] = STATE(1798), [sym__top_level_item] = STATE(43), [sym_preproc_include] = STATE(43), [sym_preproc_def] = STATE(43), @@ -11543,26 +11567,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(43), [sym_preproc_ifdef] = STATE(43), [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(379), + [sym__old_style_function_definition] = STATE(339), [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1101), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(689), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(679), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(802), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(353), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(771), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(342), [sym__top_level_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym__top_level_expression_statement] = STATE(43), @@ -11576,35 +11600,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym_expression] = STATE(1078), - [sym__string] = STATE(1079), - [sym_conditional_expression] = STATE(1079), - [sym_assignment_expression] = STATE(1079), - [sym_pointer_expression] = STATE(899), - [sym_unary_expression] = STATE(1079), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(1079), - [sym_cast_expression] = STATE(1079), - [sym_sizeof_expression] = STATE(1079), - [sym_alignof_expression] = STATE(1079), - [sym_offsetof_expression] = STATE(1079), - [sym_generic_expression] = STATE(1079), - [sym_subscript_expression] = STATE(899), - [sym_call_expression] = STATE(899), - [sym_gnu_asm_expression] = STATE(1079), - [sym_field_expression] = STATE(899), - [sym_compound_literal_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(899), - [sym_char_literal] = STATE(1079), - [sym_concatenated_string] = STATE(1079), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(1079), + [sym_expression] = STATE(1087), + [sym__string] = STATE(1086), + [sym_conditional_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1086), + [sym_pointer_expression] = STATE(902), + [sym_unary_expression] = STATE(1086), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(1086), + [sym_cast_expression] = STATE(1086), + [sym_sizeof_expression] = STATE(1086), + [sym_alignof_expression] = STATE(1086), + [sym_offsetof_expression] = STATE(1086), + [sym_generic_expression] = STATE(1086), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_gnu_asm_expression] = STATE(1086), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(1086), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(1086), + [sym_concatenated_string] = STATE(1086), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(1086), [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -11654,6 +11678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -11708,75 +11733,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(3), [sym_preproc_if] = STATE(3), [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(1773), - [sym_preproc_elif] = STATE(1773), - [sym_preproc_elifdef] = STATE(1773), + [sym_preproc_else] = STATE(1831), + [sym_preproc_elif] = STATE(1831), + [sym_preproc_elifdef] = STATE(1831), [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(3), [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(3), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -11831,6 +11856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -11887,75 +11913,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1915), - [sym_preproc_elif] = STATE(1915), - [sym_preproc_elifdef] = STATE(1915), + [sym_preproc_else] = STATE(1976), + [sym_preproc_elif] = STATE(1976), + [sym_preproc_elifdef] = STATE(1976), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12010,6 +12036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -12066,75 +12093,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(5), [sym_preproc_if] = STATE(5), [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1980), - [sym_preproc_elif] = STATE(1980), - [sym_preproc_elifdef] = STATE(1980), + [sym_preproc_else] = STATE(1942), + [sym_preproc_elif] = STATE(1942), + [sym_preproc_elifdef] = STATE(1942), [sym_function_definition] = STATE(5), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(5), [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(5), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12189,6 +12216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -12245,75 +12273,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1771), - [sym_preproc_elif] = STATE(1771), - [sym_preproc_elifdef] = STATE(1771), + [sym_preproc_else] = STATE(1879), + [sym_preproc_elif] = STATE(1879), + [sym_preproc_elifdef] = STATE(1879), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12368,6 +12396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -12424,75 +12453,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(8), [sym_preproc_if] = STATE(8), [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(1784), - [sym_preproc_elif] = STATE(1784), - [sym_preproc_elifdef] = STATE(1784), + [sym_preproc_else] = STATE(1888), + [sym_preproc_elif] = STATE(1888), + [sym_preproc_elifdef] = STATE(1888), [sym_function_definition] = STATE(8), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(8), [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(8), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12547,6 +12576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -12603,75 +12633,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(9), [sym_preproc_if] = STATE(9), [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1943), - [sym_preproc_elif] = STATE(1943), - [sym_preproc_elifdef] = STATE(1943), + [sym_preproc_else] = STATE(1929), + [sym_preproc_elif] = STATE(1929), + [sym_preproc_elifdef] = STATE(1929), [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(9), [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(9), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12726,6 +12756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -12782,75 +12813,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1970), - [sym_preproc_elif] = STATE(1970), - [sym_preproc_elifdef] = STATE(1970), + [sym_preproc_else] = STATE(1840), + [sym_preproc_elif] = STATE(1840), + [sym_preproc_elifdef] = STATE(1840), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -12905,6 +12936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -12961,75 +12993,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1953), - [sym_preproc_elif] = STATE(1953), - [sym_preproc_elifdef] = STATE(1953), + [sym_preproc_else] = STATE(1756), + [sym_preproc_elif] = STATE(1756), + [sym_preproc_elifdef] = STATE(1756), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13084,6 +13116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -13140,75 +13173,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(12), [sym_preproc_if] = STATE(12), [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1875), - [sym_preproc_elif] = STATE(1875), - [sym_preproc_elifdef] = STATE(1875), + [sym_preproc_else] = STATE(1828), + [sym_preproc_elif] = STATE(1828), + [sym_preproc_elifdef] = STATE(1828), [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(12), [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(12), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13263,6 +13296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -13319,75 +13353,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(13), [sym_preproc_if] = STATE(13), [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1818), - [sym_preproc_elif] = STATE(1818), - [sym_preproc_elifdef] = STATE(1818), + [sym_preproc_else] = STATE(1867), + [sym_preproc_elif] = STATE(1867), + [sym_preproc_elifdef] = STATE(1867), [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(13), [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(13), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13442,6 +13476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -13498,75 +13533,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1820), - [sym_preproc_elif] = STATE(1820), - [sym_preproc_elifdef] = STATE(1820), + [sym_preproc_else] = STATE(1767), + [sym_preproc_elif] = STATE(1767), + [sym_preproc_elifdef] = STATE(1767), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13621,6 +13656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -13677,75 +13713,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1887), - [sym_preproc_elif] = STATE(1887), - [sym_preproc_elifdef] = STATE(1887), + [sym_preproc_else] = STATE(1799), + [sym_preproc_elif] = STATE(1799), + [sym_preproc_elifdef] = STATE(1799), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13800,6 +13836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -13856,75 +13893,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1883), - [sym_preproc_elif] = STATE(1883), - [sym_preproc_elifdef] = STATE(1883), + [sym_preproc_else] = STATE(1884), + [sym_preproc_elif] = STATE(1884), + [sym_preproc_elifdef] = STATE(1884), [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(16), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -13979,6 +14016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -14035,75 +14073,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(17), [sym_preproc_if] = STATE(17), [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1757), - [sym_preproc_elif] = STATE(1757), - [sym_preproc_elifdef] = STATE(1757), + [sym_preproc_else] = STATE(1956), + [sym_preproc_elif] = STATE(1956), + [sym_preproc_elifdef] = STATE(1956), [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14158,6 +14196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -14214,75 +14253,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1762), - [sym_preproc_elif] = STATE(1762), - [sym_preproc_elifdef] = STATE(1762), + [sym_preproc_else] = STATE(1959), + [sym_preproc_elif] = STATE(1959), + [sym_preproc_elifdef] = STATE(1959), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14337,6 +14376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -14393,75 +14433,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1788), - [sym_preproc_elif] = STATE(1788), - [sym_preproc_elifdef] = STATE(1788), + [sym_preproc_else] = STATE(1772), + [sym_preproc_elif] = STATE(1772), + [sym_preproc_elifdef] = STATE(1772), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14516,6 +14556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -14572,75 +14613,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1933), - [sym_preproc_elif] = STATE(1933), - [sym_preproc_elifdef] = STATE(1933), + [sym_preproc_else] = STATE(1901), + [sym_preproc_elif] = STATE(1901), + [sym_preproc_elifdef] = STATE(1901), [sym_function_definition] = STATE(20), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(20), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14695,6 +14736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -14751,75 +14793,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(21), [sym_preproc_if] = STATE(21), [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(1973), - [sym_preproc_elif] = STATE(1973), - [sym_preproc_elifdef] = STATE(1973), + [sym_preproc_else] = STATE(1978), + [sym_preproc_elif] = STATE(1978), + [sym_preproc_elifdef] = STATE(1978), [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(21), [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(21), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -14874,6 +14916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -14934,71 +14977,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_elif] = STATE(1733), [sym_preproc_elifdef] = STATE(1733), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -15053,6 +15096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -15113,71 +15157,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_elif] = STATE(1745), [sym_preproc_elifdef] = STATE(1745), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(103), [aux_sym_preproc_include_token1] = ACTIONS(105), [aux_sym_preproc_def_token1] = ACTIONS(107), @@ -15232,6 +15276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -15289,71 +15334,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(139), + [sym__old_style_function_definition] = STATE(141), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1099), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1106), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(678), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(804), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(138), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(661), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(780), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(139), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(201), [aux_sym_preproc_include_token1] = ACTIONS(204), [aux_sym_preproc_def_token1] = ACTIONS(207), @@ -15408,6 +15453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(266), [anon_sym__Noreturn] = ACTIONS(266), [anon_sym_noreturn] = ACTIONS(266), + [anon_sym__Nonnull] = ACTIONS(266), [anon_sym_alignas] = ACTIONS(269), [anon_sym__Alignas] = ACTIONS(269), [sym_primitive_type] = ACTIONS(272), @@ -15465,71 +15511,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), [sym_function_definition] = STATE(28), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(28), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -15580,6 +15626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -15637,71 +15684,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(406), [aux_sym_preproc_include_token1] = ACTIONS(409), [aux_sym_preproc_def_token1] = ACTIONS(412), @@ -15752,6 +15799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(266), [anon_sym__Noreturn] = ACTIONS(266), [anon_sym_noreturn] = ACTIONS(266), + [anon_sym__Nonnull] = ACTIONS(266), [anon_sym_alignas] = ACTIONS(269), [anon_sym__Alignas] = ACTIONS(269), [sym_primitive_type] = ACTIONS(272), @@ -15809,71 +15857,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(25), [sym_preproc_ifdef] = STATE(25), [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(275), + [sym__old_style_function_definition] = STATE(252), [sym_declaration] = STATE(25), [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1100), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1104), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(697), - [sym_compound_statement] = STATE(186), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(810), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(284), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(684), + [sym_compound_statement] = STATE(187), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(796), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(304), [sym_statement] = STATE(25), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(480), [aux_sym_preproc_include_token1] = ACTIONS(483), [aux_sym_preproc_def_token1] = ACTIONS(486), @@ -15924,6 +15972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(266), [anon_sym__Noreturn] = ACTIONS(266), [anon_sym_noreturn] = ACTIONS(266), + [anon_sym__Nonnull] = ACTIONS(266), [anon_sym_alignas] = ACTIONS(269), [anon_sym__Alignas] = ACTIONS(269), [sym_primitive_type] = ACTIONS(272), @@ -15981,71 +16030,71 @@ 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(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(27), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16096,6 +16145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -16153,71 +16203,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16268,6 +16318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -16325,71 +16376,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16440,6 +16491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -16497,71 +16549,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(31), [sym_preproc_ifdef] = STATE(31), [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(31), [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16612,6 +16664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -16669,71 +16722,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(25), [sym_preproc_ifdef] = STATE(25), [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(275), + [sym__old_style_function_definition] = STATE(252), [sym_declaration] = STATE(25), [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1100), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1104), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(697), - [sym_compound_statement] = STATE(186), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(810), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(284), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(684), + [sym_compound_statement] = STATE(187), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(796), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(304), [sym_statement] = STATE(25), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(560), [aux_sym_preproc_include_token1] = ACTIONS(562), [aux_sym_preproc_def_token1] = ACTIONS(564), @@ -16784,6 +16837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -16841,71 +16895,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -16956,6 +17010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -17013,71 +17068,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(34), [sym_preproc_ifdef] = STATE(34), [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(34), [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(34), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -17128,6 +17183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -17185,71 +17241,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(30), [sym_preproc_ifdef] = STATE(30), [sym_function_definition] = STATE(30), - [sym__old_style_function_definition] = STATE(275), + [sym__old_style_function_definition] = STATE(252), [sym_declaration] = STATE(30), [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1100), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1104), [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(697), - [sym_compound_statement] = STATE(186), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(810), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(284), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(684), + [sym_compound_statement] = STATE(187), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(796), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(304), [sym_statement] = STATE(30), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(560), [aux_sym_preproc_include_token1] = ACTIONS(562), [aux_sym_preproc_def_token1] = ACTIONS(564), @@ -17300,6 +17356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -17357,71 +17414,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -17472,6 +17529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -17529,71 +17587,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -17644,6 +17702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -17701,71 +17760,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(37), [sym_preproc_ifdef] = STATE(37), [sym_function_definition] = STATE(37), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(37), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -17816,6 +17875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -17873,71 +17933,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -17988,6 +18048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -18045,71 +18106,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(39), [sym_preproc_ifdef] = STATE(39), [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -18160,6 +18221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -18217,71 +18279,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -18332,6 +18394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -18389,71 +18452,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(35), [sym_preproc_ifdef] = STATE(35), [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(35), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -18504,6 +18567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -18561,71 +18625,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(42), [sym_preproc_ifdef] = STATE(42), [sym_function_definition] = STATE(42), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(42), [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -18676,6 +18740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -18733,71 +18798,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(254), + [sym__old_style_function_definition] = STATE(309), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1097), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1100), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(693), - [sym_compound_statement] = STATE(196), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(784), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(295), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(681), + [sym_compound_statement] = STATE(228), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(805), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(283), [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(356), [aux_sym_preproc_include_token1] = ACTIONS(358), [aux_sym_preproc_def_token1] = ACTIONS(360), @@ -18848,6 +18913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -18905,26 +18971,26 @@ 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(379), + [sym__old_style_function_definition] = STATE(339), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1101), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(689), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(679), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(802), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(353), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(771), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(342), [sym__top_level_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), @@ -18938,35 +19004,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym_expression] = STATE(1078), - [sym__string] = STATE(1079), - [sym_conditional_expression] = STATE(1079), - [sym_assignment_expression] = STATE(1079), - [sym_pointer_expression] = STATE(899), - [sym_unary_expression] = STATE(1079), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(1079), - [sym_cast_expression] = STATE(1079), - [sym_sizeof_expression] = STATE(1079), - [sym_alignof_expression] = STATE(1079), - [sym_offsetof_expression] = STATE(1079), - [sym_generic_expression] = STATE(1079), - [sym_subscript_expression] = STATE(899), - [sym_call_expression] = STATE(899), - [sym_gnu_asm_expression] = STATE(1079), - [sym_field_expression] = STATE(899), - [sym_compound_literal_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(899), - [sym_char_literal] = STATE(1079), - [sym_concatenated_string] = STATE(1079), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(1079), + [sym_expression] = STATE(1087), + [sym__string] = STATE(1086), + [sym_conditional_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1086), + [sym_pointer_expression] = STATE(902), + [sym_unary_expression] = STATE(1086), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(1086), + [sym_cast_expression] = STATE(1086), + [sym_sizeof_expression] = STATE(1086), + [sym_alignof_expression] = STATE(1086), + [sym_offsetof_expression] = STATE(1086), + [sym_generic_expression] = STATE(1086), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_gnu_asm_expression] = STATE(1086), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(1086), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(1086), + [sym_concatenated_string] = STATE(1086), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(1086), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [ts_builtin_sym_end] = ACTIONS(634), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -19016,6 +19082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -19071,26 +19138,26 @@ 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(379), + [sym__old_style_function_definition] = STATE(339), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1101), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1098), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(689), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(679), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(802), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(353), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(771), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(342), [sym__top_level_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym__top_level_expression_statement] = STATE(44), @@ -19104,35 +19171,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym_expression] = STATE(1078), - [sym__string] = STATE(1079), - [sym_conditional_expression] = STATE(1079), - [sym_assignment_expression] = STATE(1079), - [sym_pointer_expression] = STATE(899), - [sym_unary_expression] = STATE(1079), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(1079), - [sym_cast_expression] = STATE(1079), - [sym_sizeof_expression] = STATE(1079), - [sym_alignof_expression] = STATE(1079), - [sym_offsetof_expression] = STATE(1079), - [sym_generic_expression] = STATE(1079), - [sym_subscript_expression] = STATE(899), - [sym_call_expression] = STATE(899), - [sym_gnu_asm_expression] = STATE(1079), - [sym_field_expression] = STATE(899), - [sym_compound_literal_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(899), - [sym_char_literal] = STATE(1079), - [sym_concatenated_string] = STATE(1079), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(1079), + [sym_expression] = STATE(1087), + [sym__string] = STATE(1086), + [sym_conditional_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1086), + [sym_pointer_expression] = STATE(902), + [sym_unary_expression] = STATE(1086), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(1086), + [sym_cast_expression] = STATE(1086), + [sym_sizeof_expression] = STATE(1086), + [sym_alignof_expression] = STATE(1086), + [sym_offsetof_expression] = STATE(1086), + [sym_generic_expression] = STATE(1086), + [sym_subscript_expression] = STATE(902), + [sym_call_expression] = STATE(902), + [sym_gnu_asm_expression] = STATE(1086), + [sym_field_expression] = STATE(902), + [sym_compound_literal_expression] = STATE(1086), + [sym_parenthesized_expression] = STATE(902), + [sym_char_literal] = STATE(1086), + [sym_concatenated_string] = STATE(1086), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(1086), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(756), + [sym_macro_type_specifier] = STATE(764), [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [ts_builtin_sym_end] = ACTIONS(636), [sym_identifier] = ACTIONS(638), [aux_sym_preproc_include_token1] = ACTIONS(641), @@ -19182,6 +19249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(698), [anon_sym__Noreturn] = ACTIONS(698), [anon_sym_noreturn] = ACTIONS(698), + [anon_sym__Nonnull] = ACTIONS(698), [anon_sym_alignas] = ACTIONS(701), [anon_sym__Alignas] = ACTIONS(701), [sym_primitive_type] = ACTIONS(704), @@ -19231,20 +19299,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [45] = { [sym_declaration] = STATE(45), [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1109), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1116), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(45), [sym_labeled_statement] = STATE(45), [sym_expression_statement] = STATE(45), @@ -19259,34 +19327,34 @@ 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(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(782), [aux_sym_preproc_include_token1] = ACTIONS(785), @@ -19342,6 +19410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(826), [anon_sym__Noreturn] = ACTIONS(826), [anon_sym_noreturn] = ACTIONS(826), + [anon_sym__Nonnull] = ACTIONS(826), [anon_sym_alignas] = ACTIONS(829), [anon_sym__Alignas] = ACTIONS(829), [sym_primitive_type] = ACTIONS(832), @@ -19394,20 +19463,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [46] = { [sym_declaration] = STATE(45), [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1109), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1116), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(45), [sym_labeled_statement] = STATE(45), [sym_expression_statement] = STATE(45), @@ -19422,34 +19491,34 @@ 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(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(912), @@ -19505,6 +19574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -19557,20 +19627,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [47] = { [sym_declaration] = STATE(48), [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1109), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1116), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(48), [sym_labeled_statement] = STATE(48), [sym_expression_statement] = STATE(48), @@ -19585,34 +19655,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(48), [sym_seh_try_statement] = STATE(48), [sym_seh_leave_statement] = STATE(48), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(48), [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(914), @@ -19668,6 +19738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -19720,20 +19791,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [48] = { [sym_declaration] = STATE(45), [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1109), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1116), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(45), [sym_labeled_statement] = STATE(45), [sym_expression_statement] = STATE(45), @@ -19748,34 +19819,34 @@ 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(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(45), [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(916), @@ -19831,6 +19902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -19883,20 +19955,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [49] = { [sym_declaration] = STATE(46), [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1109), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1116), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(46), [sym_labeled_statement] = STATE(46), [sym_expression_statement] = STATE(46), @@ -19911,34 +19983,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(46), [sym_seh_try_statement] = STATE(46), [sym_seh_leave_statement] = STATE(46), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(46), [sym_identifier] = ACTIONS(910), [aux_sym_preproc_include_token1] = ACTIONS(918), @@ -19994,6 +20066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -20044,22 +20117,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [50] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1122), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [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(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = 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(380), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [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), + }, + [51] = { [sym_declaration] = STATE(58), [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(701), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1118), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(58), [sym_labeled_statement] = STATE(58), [sym_expression_statement] = STATE(58), @@ -20074,39 +20307,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(58), [sym_seh_try_statement] = STATE(58), [sym_seh_leave_statement] = STATE(58), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(920), + [sym_identifier] = ACTIONS(924), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym___extension__] = ACTIONS(576), + [anon_sym_typedef] = ACTIONS(578), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = 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(584), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(594), + [anon_sym_for] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(606), + [anon_sym___leave] = ACTIONS(608), + [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_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1118), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [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(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(924), [aux_sym_preproc_include_token1] = ACTIONS(914), [aux_sym_preproc_def_token1] = ACTIONS(914), [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), [aux_sym_preproc_ifdef_token1] = ACTIONS(914), [aux_sym_preproc_ifdef_token2] = ACTIONS(914), [sym_preproc_directive] = ACTIONS(914), @@ -20117,9 +20511,9 @@ 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(368), - [anon_sym___extension__] = ACTIONS(370), - [anon_sym_typedef] = ACTIONS(372), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym___extension__] = ACTIONS(576), + [anon_sym_typedef] = ACTIONS(578), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -20130,8 +20524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(914), [anon_sym___thiscall] = ACTIONS(914), [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(582), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20153,344 +20546,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = 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(380), + [anon_sym_if] = ACTIONS(584), [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(382), + [anon_sym_switch] = ACTIONS(586), [anon_sym_case] = ACTIONS(914), [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), - [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), - }, - [51] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1112), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(54), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym___extension__] = ACTIONS(576), - [anon_sym_typedef] = ACTIONS(578), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [anon_sym_alignas] = ACTIONS(49), - [anon_sym__Alignas] = 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(584), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(598), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(606), - [anon_sym___leave] = ACTIONS(608), - [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_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1112), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym_seh_try_statement] = STATE(59), - [sym_seh_leave_statement] = STATE(59), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym___extension__] = ACTIONS(576), - [anon_sym_typedef] = ACTIONS(578), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [anon_sym_alignas] = ACTIONS(49), - [anon_sym__Alignas] = 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(584), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(598), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(606), - [anon_sym___leave] = ACTIONS(608), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(594), + [anon_sym_for] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(606), + [anon_sym___leave] = ACTIONS(608), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -20523,20 +20599,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [53] = { [sym_declaration] = STATE(61), [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1118), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1122), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(61), [sym_labeled_statement] = STATE(61), [sym_expression_statement] = STATE(61), @@ -20551,34 +20627,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(61), [sym_seh_try_statement] = STATE(61), [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(61), [sym_identifier] = ACTIONS(920), [aux_sym_preproc_include_token1] = ACTIONS(912), @@ -20630,6 +20706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -20680,22 +20757,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [54] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [aux_sym_case_statement_repeat1] = STATE(54), + [ts_builtin_sym_end] = ACTIONS(928), + [sym_identifier] = ACTIONS(930), + [aux_sym_preproc_include_token1] = ACTIONS(785), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(785), + [sym_preproc_directive] = ACTIONS(785), + [anon_sym_LPAREN2] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym___extension__] = ACTIONS(936), + [anon_sym_typedef] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(808), + [anon_sym___attribute__] = ACTIONS(811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(814), + [anon_sym___declspec] = ACTIONS(817), + [anon_sym___cdecl] = ACTIONS(785), + [anon_sym___clrcall] = ACTIONS(785), + [anon_sym___stdcall] = ACTIONS(785), + [anon_sym___fastcall] = ACTIONS(785), + [anon_sym___thiscall] = ACTIONS(785), + [anon_sym___vectorcall] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_signed] = ACTIONS(823), + [anon_sym_unsigned] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_static] = ACTIONS(808), + [anon_sym_auto] = ACTIONS(808), + [anon_sym_register] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(808), + [anon_sym___inline] = ACTIONS(808), + [anon_sym___inline__] = ACTIONS(808), + [anon_sym___forceinline] = ACTIONS(808), + [anon_sym_thread_local] = ACTIONS(808), + [anon_sym___thread] = ACTIONS(808), + [anon_sym_const] = ACTIONS(826), + [anon_sym_constexpr] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_restrict] = ACTIONS(826), + [anon_sym___restrict__] = ACTIONS(826), + [anon_sym__Atomic] = ACTIONS(826), + [anon_sym__Noreturn] = ACTIONS(826), + [anon_sym_noreturn] = ACTIONS(826), + [anon_sym__Nonnull] = ACTIONS(826), + [anon_sym_alignas] = ACTIONS(829), + [anon_sym__Alignas] = ACTIONS(829), + [sym_primitive_type] = ACTIONS(832), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_struct] = ACTIONS(838), + [anon_sym_union] = ACTIONS(841), + [anon_sym_if] = ACTIONS(945), + [anon_sym_else] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(948), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(954), + [anon_sym_for] = ACTIONS(957), + [anon_sym_return] = ACTIONS(960), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_goto] = ACTIONS(969), + [anon_sym___try] = ACTIONS(972), + [anon_sym___leave] = ACTIONS(975), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_sizeof] = ACTIONS(880), + [anon_sym___alignof__] = ACTIONS(883), + [anon_sym___alignof] = ACTIONS(883), + [anon_sym__alignof] = ACTIONS(883), + [anon_sym_alignof] = ACTIONS(883), + [anon_sym__Alignof] = ACTIONS(883), + [anon_sym_offsetof] = ACTIONS(886), + [anon_sym__Generic] = ACTIONS(889), + [anon_sym_asm] = ACTIONS(892), + [anon_sym___asm__] = ACTIONS(892), + [sym_number_literal] = ACTIONS(895), + [anon_sym_L_SQUOTE] = ACTIONS(898), + [anon_sym_u_SQUOTE] = ACTIONS(898), + [anon_sym_U_SQUOTE] = ACTIONS(898), + [anon_sym_u8_SQUOTE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_L_DQUOTE] = ACTIONS(901), + [anon_sym_u_DQUOTE] = ACTIONS(901), + [anon_sym_U_DQUOTE] = ACTIONS(901), + [anon_sym_u8_DQUOTE] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_true] = ACTIONS(904), + [sym_false] = ACTIONS(904), + [anon_sym_NULL] = ACTIONS(907), + [anon_sym_nullptr] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + }, + [55] = { [sym_declaration] = STATE(56), [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1112), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1118), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -20710,43 +20947,43 @@ 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(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(56), [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_if_token2] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20761,12 +20998,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), [anon_sym_LBRACE] = ACTIONS(582), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -20789,6 +21026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -20796,10 +21034,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(584), - [anon_sym_else] = ACTIONS(912), + [anon_sym_else] = ACTIONS(916), [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), [anon_sym_while] = ACTIONS(592), [anon_sym_do] = ACTIONS(594), [anon_sym_for] = ACTIONS(596), @@ -20838,182 +21076,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [55] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [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(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), - [aux_sym_case_statement_repeat1] = STATE(55), - [ts_builtin_sym_end] = ACTIONS(928), - [sym_identifier] = ACTIONS(930), - [aux_sym_preproc_include_token1] = ACTIONS(785), - [aux_sym_preproc_def_token1] = ACTIONS(785), - [aux_sym_preproc_if_token1] = ACTIONS(785), - [aux_sym_preproc_ifdef_token1] = ACTIONS(785), - [aux_sym_preproc_ifdef_token2] = ACTIONS(785), - [sym_preproc_directive] = ACTIONS(785), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(790), - [anon_sym_TILDE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym___extension__] = ACTIONS(936), - [anon_sym_typedef] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(808), - [anon_sym___attribute__] = ACTIONS(811), - [anon_sym_LBRACK_LBRACK] = ACTIONS(814), - [anon_sym___declspec] = ACTIONS(817), - [anon_sym___cdecl] = ACTIONS(785), - [anon_sym___clrcall] = ACTIONS(785), - [anon_sym___stdcall] = ACTIONS(785), - [anon_sym___fastcall] = ACTIONS(785), - [anon_sym___thiscall] = ACTIONS(785), - [anon_sym___vectorcall] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_signed] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(823), - [anon_sym_long] = ACTIONS(823), - [anon_sym_short] = ACTIONS(823), - [anon_sym_static] = ACTIONS(808), - [anon_sym_auto] = ACTIONS(808), - [anon_sym_register] = ACTIONS(808), - [anon_sym_inline] = ACTIONS(808), - [anon_sym___inline] = ACTIONS(808), - [anon_sym___inline__] = ACTIONS(808), - [anon_sym___forceinline] = ACTIONS(808), - [anon_sym_thread_local] = ACTIONS(808), - [anon_sym___thread] = ACTIONS(808), - [anon_sym_const] = ACTIONS(826), - [anon_sym_constexpr] = ACTIONS(826), - [anon_sym_volatile] = ACTIONS(826), - [anon_sym_restrict] = ACTIONS(826), - [anon_sym___restrict__] = ACTIONS(826), - [anon_sym__Atomic] = ACTIONS(826), - [anon_sym__Noreturn] = ACTIONS(826), - [anon_sym_noreturn] = ACTIONS(826), - [anon_sym_alignas] = ACTIONS(829), - [anon_sym__Alignas] = ACTIONS(829), - [sym_primitive_type] = ACTIONS(832), - [anon_sym_enum] = ACTIONS(835), - [anon_sym_struct] = ACTIONS(838), - [anon_sym_union] = ACTIONS(841), - [anon_sym_if] = ACTIONS(945), - [anon_sym_else] = ACTIONS(785), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_case] = ACTIONS(785), - [anon_sym_default] = ACTIONS(785), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(954), - [anon_sym_for] = ACTIONS(957), - [anon_sym_return] = ACTIONS(960), - [anon_sym_break] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_goto] = ACTIONS(969), - [anon_sym___try] = ACTIONS(972), - [anon_sym___leave] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_sizeof] = ACTIONS(880), - [anon_sym___alignof__] = ACTIONS(883), - [anon_sym___alignof] = ACTIONS(883), - [anon_sym__alignof] = ACTIONS(883), - [anon_sym_alignof] = ACTIONS(883), - [anon_sym__Alignof] = ACTIONS(883), - [anon_sym_offsetof] = ACTIONS(886), - [anon_sym__Generic] = ACTIONS(889), - [anon_sym_asm] = ACTIONS(892), - [anon_sym___asm__] = ACTIONS(892), - [sym_number_literal] = ACTIONS(895), - [anon_sym_L_SQUOTE] = ACTIONS(898), - [anon_sym_u_SQUOTE] = ACTIONS(898), - [anon_sym_U_SQUOTE] = ACTIONS(898), - [anon_sym_u8_SQUOTE] = ACTIONS(898), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_L_DQUOTE] = ACTIONS(901), - [anon_sym_u_DQUOTE] = ACTIONS(901), - [anon_sym_U_DQUOTE] = ACTIONS(901), - [anon_sym_u8_DQUOTE] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [anon_sym_NULL] = ACTIONS(907), - [anon_sym_nullptr] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - }, [56] = { [sym_declaration] = STATE(56), [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1112), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1118), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -21028,34 +21107,34 @@ 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(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(56), [sym_identifier] = ACTIONS(978), [aux_sym_preproc_include_token1] = ACTIONS(785), @@ -21107,6 +21186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(826), [anon_sym__Noreturn] = ACTIONS(826), [anon_sym_noreturn] = ACTIONS(826), + [anon_sym__Nonnull] = ACTIONS(826), [anon_sym_alignas] = ACTIONS(829), [anon_sym__Alignas] = ACTIONS(829), [sym_primitive_type] = ACTIONS(832), @@ -21159,20 +21239,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [57] = { [sym_declaration] = STATE(63), [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(63), [sym_labeled_statement] = STATE(63), [sym_expression_statement] = STATE(63), @@ -21187,34 +21267,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(63), [sym_seh_try_statement] = STATE(63), [sym_seh_leave_statement] = STATE(63), - [sym_expression] = STATE(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(63), [ts_builtin_sym_end] = ACTIONS(1026), [sym_identifier] = ACTIONS(1028), @@ -21266,6 +21346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -21316,181 +21397,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [58] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(701), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1118), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [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(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(916), - [aux_sym_preproc_def_token1] = ACTIONS(916), - [aux_sym_preproc_if_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token2] = ACTIONS(916), - [sym_preproc_directive] = ACTIONS(916), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym___extension__] = ACTIONS(370), - [anon_sym_typedef] = ACTIONS(372), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(916), - [anon_sym___clrcall] = ACTIONS(916), - [anon_sym___stdcall] = ACTIONS(916), - [anon_sym___fastcall] = ACTIONS(916), - [anon_sym___thiscall] = ACTIONS(916), - [anon_sym___vectorcall] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [anon_sym_alignas] = ACTIONS(49), - [anon_sym__Alignas] = 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(380), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), - [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), - }, - [59] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1112), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -21505,43 +21427,43 @@ 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(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(56), [sym_identifier] = ACTIONS(924), - [aux_sym_preproc_include_token1] = ACTIONS(916), - [aux_sym_preproc_def_token1] = ACTIONS(916), - [aux_sym_preproc_if_token1] = ACTIONS(916), - [aux_sym_preproc_if_token2] = ACTIONS(916), - [aux_sym_preproc_ifdef_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token2] = ACTIONS(916), - [sym_preproc_directive] = ACTIONS(916), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21556,12 +21478,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(916), - [anon_sym___clrcall] = ACTIONS(916), - [anon_sym___stdcall] = ACTIONS(916), - [anon_sym___fastcall] = ACTIONS(916), - [anon_sym___thiscall] = ACTIONS(916), - [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), [anon_sym_LBRACE] = ACTIONS(582), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -21584,6 +21506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -21591,10 +21514,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [anon_sym_if] = ACTIONS(584), - [anon_sym_else] = ACTIONS(916), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), [anon_sym_while] = ACTIONS(592), [anon_sym_do] = ACTIONS(594), [anon_sym_for] = ACTIONS(596), @@ -21633,23 +21556,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [60] = { + [59] = { [sym_declaration] = STATE(64), [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(64), [sym_labeled_statement] = STATE(64), [sym_expression_statement] = STATE(64), @@ -21664,34 +21587,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(64), [sym_seh_try_statement] = STATE(64), [sym_seh_leave_statement] = STATE(64), - [sym_expression] = STATE(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(64), [ts_builtin_sym_end] = ACTIONS(922), [sym_identifier] = ACTIONS(1028), @@ -21743,6 +21666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -21792,23 +21716,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, + [60] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1122), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [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(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym___extension__] = ACTIONS(370), + [anon_sym_typedef] = ACTIONS(372), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = 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(380), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [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), + }, [61] = { [sym_declaration] = STATE(61), [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1118), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1122), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(61), [sym_labeled_statement] = STATE(61), [sym_expression_statement] = STATE(61), @@ -21823,34 +21907,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(61), [sym_seh_try_statement] = STATE(61), [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(61), [sym_identifier] = ACTIONS(1038), [aux_sym_preproc_include_token1] = ACTIONS(785), @@ -21902,6 +21986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(826), [anon_sym__Noreturn] = ACTIONS(826), [anon_sym_noreturn] = ACTIONS(826), + [anon_sym__Nonnull] = ACTIONS(826), [anon_sym_alignas] = ACTIONS(829), [anon_sym__Alignas] = ACTIONS(829), [sym_primitive_type] = ACTIONS(832), @@ -21954,20 +22039,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [62] = { [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1118), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1122), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym_expression_statement] = STATE(53), @@ -21982,34 +22067,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(53), [sym_seh_try_statement] = STATE(53), [sym_seh_leave_statement] = STATE(53), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(53), [sym_identifier] = ACTIONS(920), [aux_sym_preproc_include_token1] = ACTIONS(918), @@ -22061,6 +22146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -22111,65 +22197,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [63] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [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(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), - [aux_sym_case_statement_repeat1] = STATE(55), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [aux_sym_case_statement_repeat1] = STATE(54), [ts_builtin_sym_end] = ACTIONS(926), [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(912), @@ -22220,6 +22306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -22270,65 +22357,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [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(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), - [aux_sym_case_statement_repeat1] = STATE(55), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [aux_sym_case_statement_repeat1] = STATE(54), [ts_builtin_sym_end] = ACTIONS(1036), [sym_identifier] = ACTIONS(1028), [aux_sym_preproc_include_token1] = ACTIONS(916), @@ -22379,6 +22466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -22431,20 +22519,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [65] = { [sym_declaration] = STATE(68), [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(68), [sym_labeled_statement] = STATE(68), [sym_expression_statement] = STATE(68), @@ -22459,34 +22547,34 @@ 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(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(68), [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), @@ -22525,6 +22613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -22575,20 +22664,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [66] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22603,34 +22692,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(67), [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), @@ -22669,6 +22758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -22719,20 +22809,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [67] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22747,34 +22837,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(67), [sym_identifier] = ACTIONS(1096), [anon_sym_LPAREN2] = ACTIONS(787), @@ -22813,6 +22903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(826), [anon_sym__Noreturn] = ACTIONS(826), [anon_sym_noreturn] = ACTIONS(826), + [anon_sym__Nonnull] = ACTIONS(826), [anon_sym_alignas] = ACTIONS(829), [anon_sym__Alignas] = ACTIONS(829), [sym_primitive_type] = ACTIONS(832), @@ -22863,20 +22954,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [68] = { [sym_declaration] = STATE(67), [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(67), [sym_labeled_statement] = STATE(67), [sym_expression_statement] = STATE(67), @@ -22891,34 +22982,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(67), [sym_seh_try_statement] = STATE(67), [sym_seh_leave_statement] = STATE(67), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(67), [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), @@ -22957,6 +23048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -23007,20 +23099,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [69] = { [sym_declaration] = STATE(66), [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1129), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(406), - [sym_ms_declspec_modifier] = STATE(701), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1125), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(403), + [sym_ms_declspec_modifier] = STATE(698), [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym_attributed_statement] = STATE(66), [sym_labeled_statement] = STATE(66), [sym_expression_statement] = STATE(66), @@ -23035,34 +23127,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(66), [sym_seh_try_statement] = STATE(66), [sym_seh_leave_statement] = STATE(66), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [aux_sym_case_statement_repeat1] = STATE(66), [sym_identifier] = ACTIONS(1086), [anon_sym_LPAREN2] = ACTIONS(19), @@ -23101,6 +23193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -23149,48 +23242,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [70] = { - [sym_declaration] = STATE(459), - [sym__declaration_modifiers] = STATE(701), + [sym_declaration] = STATE(473), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1126), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), [sym__for_statement_body] = STATE(1898), - [sym_expression] = STATE(1013), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1779), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_expression] = STATE(1024), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1817), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23226,6 +23319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -23262,48 +23356,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [71] = { - [sym_declaration] = STATE(459), - [sym__declaration_modifiers] = STATE(701), + [sym_declaration] = STATE(473), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1126), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__for_statement_body] = STATE(1942), - [sym_expression] = STATE(1013), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1779), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__for_statement_body] = STATE(1904), + [sym_expression] = STATE(1024), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1817), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23339,6 +23433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -23375,48 +23470,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [72] = { - [sym_declaration] = STATE(459), - [sym__declaration_modifiers] = STATE(701), + [sym_declaration] = STATE(473), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1126), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__for_statement_body] = STATE(1844), - [sym_expression] = STATE(1013), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1779), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__for_statement_body] = STATE(1812), + [sym_expression] = STATE(1024), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1817), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23452,6 +23547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -23488,48 +23584,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [73] = { - [sym_declaration] = STATE(459), - [sym__declaration_modifiers] = STATE(701), + [sym_declaration] = STATE(473), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1126), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__for_statement_body] = STATE(1891), - [sym_expression] = STATE(1013), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1779), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__for_statement_body] = STATE(1844), + [sym_expression] = STATE(1024), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1817), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23565,6 +23661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -23601,48 +23698,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [74] = { - [sym_declaration] = STATE(459), - [sym__declaration_modifiers] = STATE(701), + [sym_declaration] = STATE(473), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1126), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__for_statement_body] = STATE(1946), - [sym_expression] = STATE(1013), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1779), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__for_statement_body] = STATE(1889), + [sym_expression] = STATE(1024), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1817), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1111), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -23678,6 +23775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -23714,7 +23812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [75] = { - [sym_else_clause] = STATE(91), + [sym_else_clause] = STATE(95), [sym_identifier] = ACTIONS(1117), [aux_sym_preproc_include_token1] = ACTIONS(1117), [aux_sym_preproc_def_token1] = ACTIONS(1117), @@ -23769,6 +23867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1117), [anon_sym__Noreturn] = ACTIONS(1117), [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym__Nonnull] = ACTIONS(1117), [anon_sym_alignas] = ACTIONS(1117), [anon_sym__Alignas] = ACTIONS(1117), [sym_primitive_type] = ACTIONS(1117), @@ -23819,107 +23918,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [76] = { - [ts_builtin_sym_end] = ACTIONS(1123), - [sym_identifier] = ACTIONS(1125), - [aux_sym_preproc_include_token1] = ACTIONS(1125), - [aux_sym_preproc_def_token1] = ACTIONS(1125), - [anon_sym_COMMA] = ACTIONS(1123), - [anon_sym_RPAREN] = ACTIONS(1123), - [aux_sym_preproc_if_token1] = ACTIONS(1125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), - [sym_preproc_directive] = ACTIONS(1125), - [anon_sym_LPAREN2] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_STAR] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym___extension__] = ACTIONS(1125), - [anon_sym_typedef] = ACTIONS(1125), - [anon_sym_extern] = ACTIONS(1125), - [anon_sym___attribute__] = ACTIONS(1125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1123), - [anon_sym___declspec] = ACTIONS(1125), - [anon_sym___cdecl] = ACTIONS(1125), - [anon_sym___clrcall] = ACTIONS(1125), - [anon_sym___stdcall] = ACTIONS(1125), - [anon_sym___fastcall] = ACTIONS(1125), - [anon_sym___thiscall] = ACTIONS(1125), - [anon_sym___vectorcall] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_signed] = ACTIONS(1125), - [anon_sym_unsigned] = ACTIONS(1125), - [anon_sym_long] = ACTIONS(1125), - [anon_sym_short] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_auto] = ACTIONS(1125), - [anon_sym_register] = ACTIONS(1125), - [anon_sym_inline] = ACTIONS(1125), - [anon_sym___inline] = ACTIONS(1125), - [anon_sym___inline__] = ACTIONS(1125), - [anon_sym___forceinline] = ACTIONS(1125), - [anon_sym_thread_local] = ACTIONS(1125), - [anon_sym___thread] = ACTIONS(1125), - [anon_sym_const] = ACTIONS(1125), - [anon_sym_constexpr] = ACTIONS(1125), - [anon_sym_volatile] = ACTIONS(1125), - [anon_sym_restrict] = ACTIONS(1125), - [anon_sym___restrict__] = ACTIONS(1125), - [anon_sym__Atomic] = ACTIONS(1125), - [anon_sym__Noreturn] = ACTIONS(1125), - [anon_sym_noreturn] = ACTIONS(1125), - [anon_sym_alignas] = ACTIONS(1125), - [anon_sym__Alignas] = ACTIONS(1125), - [sym_primitive_type] = ACTIONS(1125), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_struct] = ACTIONS(1125), - [anon_sym_union] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1125), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(1125), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1125), - [anon_sym_do] = ACTIONS(1125), - [anon_sym_for] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1125), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1125), - [anon_sym_goto] = ACTIONS(1125), - [anon_sym___try] = ACTIONS(1125), - [anon_sym___except] = ACTIONS(1125), - [anon_sym___finally] = ACTIONS(1125), - [anon_sym___leave] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [anon_sym_sizeof] = ACTIONS(1125), - [anon_sym___alignof__] = ACTIONS(1125), - [anon_sym___alignof] = ACTIONS(1125), - [anon_sym__alignof] = ACTIONS(1125), - [anon_sym_alignof] = ACTIONS(1125), - [anon_sym__Alignof] = ACTIONS(1125), - [anon_sym_offsetof] = ACTIONS(1125), - [anon_sym__Generic] = ACTIONS(1125), - [anon_sym_asm] = ACTIONS(1125), - [anon_sym___asm__] = ACTIONS(1125), - [sym_number_literal] = ACTIONS(1123), - [anon_sym_L_SQUOTE] = ACTIONS(1123), - [anon_sym_u_SQUOTE] = ACTIONS(1123), - [anon_sym_U_SQUOTE] = ACTIONS(1123), - [anon_sym_u8_SQUOTE] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(1123), - [anon_sym_L_DQUOTE] = ACTIONS(1123), - [anon_sym_u_DQUOTE] = ACTIONS(1123), - [anon_sym_U_DQUOTE] = ACTIONS(1123), - [anon_sym_u8_DQUOTE] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [sym_true] = ACTIONS(1125), - [sym_false] = ACTIONS(1125), - [anon_sym_NULL] = ACTIONS(1125), - [anon_sym_nullptr] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [aux_sym_preproc_else_token1] = ACTIONS(1123), + [aux_sym_preproc_elif_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym__Nonnull] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, [77] = { @@ -23977,6 +24077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1127), [anon_sym__Noreturn] = ACTIONS(1127), [anon_sym_noreturn] = ACTIONS(1127), + [anon_sym__Nonnull] = ACTIONS(1127), [anon_sym_alignas] = ACTIONS(1127), [anon_sym__Alignas] = ACTIONS(1127), [sym_primitive_type] = ACTIONS(1127), @@ -24081,6 +24182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1131), [anon_sym__Noreturn] = ACTIONS(1131), [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym__Nonnull] = ACTIONS(1131), [anon_sym_alignas] = ACTIONS(1131), [anon_sym__Alignas] = ACTIONS(1131), [sym_primitive_type] = ACTIONS(1131), @@ -24185,6 +24287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1135), [anon_sym__Noreturn] = ACTIONS(1135), [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym__Nonnull] = ACTIONS(1135), [anon_sym_alignas] = ACTIONS(1135), [anon_sym__Alignas] = ACTIONS(1135), [sym_primitive_type] = ACTIONS(1135), @@ -24235,110 +24338,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [80] = { - [sym_identifier] = ACTIONS(1125), - [aux_sym_preproc_include_token1] = ACTIONS(1125), - [aux_sym_preproc_def_token1] = ACTIONS(1125), - [aux_sym_preproc_if_token1] = ACTIONS(1125), - [aux_sym_preproc_if_token2] = ACTIONS(1125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), - [aux_sym_preproc_else_token1] = ACTIONS(1125), - [aux_sym_preproc_elif_token1] = ACTIONS(1125), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1125), - [sym_preproc_directive] = ACTIONS(1125), - [anon_sym_LPAREN2] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_STAR] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym___extension__] = ACTIONS(1125), - [anon_sym_typedef] = ACTIONS(1125), - [anon_sym_extern] = ACTIONS(1125), - [anon_sym___attribute__] = ACTIONS(1125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1123), - [anon_sym___declspec] = ACTIONS(1125), - [anon_sym___cdecl] = ACTIONS(1125), - [anon_sym___clrcall] = ACTIONS(1125), - [anon_sym___stdcall] = ACTIONS(1125), - [anon_sym___fastcall] = ACTIONS(1125), - [anon_sym___thiscall] = ACTIONS(1125), - [anon_sym___vectorcall] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_signed] = ACTIONS(1125), - [anon_sym_unsigned] = ACTIONS(1125), - [anon_sym_long] = ACTIONS(1125), - [anon_sym_short] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_auto] = ACTIONS(1125), - [anon_sym_register] = ACTIONS(1125), - [anon_sym_inline] = ACTIONS(1125), - [anon_sym___inline] = ACTIONS(1125), - [anon_sym___inline__] = ACTIONS(1125), - [anon_sym___forceinline] = ACTIONS(1125), - [anon_sym_thread_local] = ACTIONS(1125), - [anon_sym___thread] = ACTIONS(1125), - [anon_sym_const] = ACTIONS(1125), - [anon_sym_constexpr] = ACTIONS(1125), - [anon_sym_volatile] = ACTIONS(1125), - [anon_sym_restrict] = ACTIONS(1125), - [anon_sym___restrict__] = ACTIONS(1125), - [anon_sym__Atomic] = ACTIONS(1125), - [anon_sym__Noreturn] = ACTIONS(1125), - [anon_sym_noreturn] = ACTIONS(1125), - [anon_sym_alignas] = ACTIONS(1125), - [anon_sym__Alignas] = ACTIONS(1125), - [sym_primitive_type] = ACTIONS(1125), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_struct] = ACTIONS(1125), - [anon_sym_union] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1125), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(1125), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1125), - [anon_sym_do] = ACTIONS(1125), - [anon_sym_for] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1125), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1125), - [anon_sym_goto] = ACTIONS(1125), - [anon_sym___try] = ACTIONS(1125), - [anon_sym___leave] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [anon_sym_sizeof] = ACTIONS(1125), - [anon_sym___alignof__] = ACTIONS(1125), - [anon_sym___alignof] = ACTIONS(1125), - [anon_sym__alignof] = ACTIONS(1125), - [anon_sym_alignof] = ACTIONS(1125), - [anon_sym__Alignof] = ACTIONS(1125), - [anon_sym_offsetof] = ACTIONS(1125), - [anon_sym__Generic] = ACTIONS(1125), - [anon_sym_asm] = ACTIONS(1125), - [anon_sym___asm__] = ACTIONS(1125), - [sym_number_literal] = ACTIONS(1123), - [anon_sym_L_SQUOTE] = ACTIONS(1123), - [anon_sym_u_SQUOTE] = ACTIONS(1123), - [anon_sym_U_SQUOTE] = ACTIONS(1123), - [anon_sym_u8_SQUOTE] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(1123), - [anon_sym_L_DQUOTE] = ACTIONS(1123), - [anon_sym_u_DQUOTE] = ACTIONS(1123), - [anon_sym_U_DQUOTE] = ACTIONS(1123), - [anon_sym_u8_DQUOTE] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [sym_true] = ACTIONS(1125), - [sym_false] = ACTIONS(1125), - [anon_sym_NULL] = ACTIONS(1125), - [anon_sym_nullptr] = ACTIONS(1125), - [sym_comment] = ACTIONS(3), - }, - [81] = { [sym_identifier] = ACTIONS(1139), [aux_sym_preproc_include_token1] = ACTIONS(1139), [aux_sym_preproc_def_token1] = ACTIONS(1139), @@ -24393,6 +24392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1139), [anon_sym__Noreturn] = ACTIONS(1139), [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym__Nonnull] = ACTIONS(1139), [anon_sym_alignas] = ACTIONS(1139), [anon_sym__Alignas] = ACTIONS(1139), [sym_primitive_type] = ACTIONS(1139), @@ -24442,7 +24442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, - [82] = { + [81] = { [sym_identifier] = ACTIONS(1143), [aux_sym_preproc_include_token1] = ACTIONS(1143), [aux_sym_preproc_def_token1] = ACTIONS(1143), @@ -24497,6 +24497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1143), [anon_sym__Noreturn] = ACTIONS(1143), [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), [anon_sym_alignas] = ACTIONS(1143), [anon_sym__Alignas] = ACTIONS(1143), [sym_primitive_type] = ACTIONS(1143), @@ -24546,7 +24547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, - [83] = { + [82] = { [sym_identifier] = ACTIONS(1147), [aux_sym_preproc_include_token1] = ACTIONS(1147), [aux_sym_preproc_def_token1] = ACTIONS(1147), @@ -24601,6 +24602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1147), [anon_sym__Noreturn] = ACTIONS(1147), [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym__Nonnull] = ACTIONS(1147), [anon_sym_alignas] = ACTIONS(1147), [anon_sym__Alignas] = ACTIONS(1147), [sym_primitive_type] = ACTIONS(1147), @@ -24650,7 +24652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, - [84] = { + [83] = { [sym_identifier] = ACTIONS(1151), [aux_sym_preproc_include_token1] = ACTIONS(1151), [aux_sym_preproc_def_token1] = ACTIONS(1151), @@ -24705,6 +24707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1151), [anon_sym__Noreturn] = ACTIONS(1151), [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym__Nonnull] = ACTIONS(1151), [anon_sym_alignas] = ACTIONS(1151), [anon_sym__Alignas] = ACTIONS(1151), [sym_primitive_type] = ACTIONS(1151), @@ -24754,7 +24757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, - [85] = { + [84] = { [sym_identifier] = ACTIONS(1155), [aux_sym_preproc_include_token1] = ACTIONS(1155), [aux_sym_preproc_def_token1] = ACTIONS(1155), @@ -24809,6 +24812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1155), [anon_sym__Noreturn] = ACTIONS(1155), [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym__Nonnull] = ACTIONS(1155), [anon_sym_alignas] = ACTIONS(1155), [anon_sym__Alignas] = ACTIONS(1155), [sym_primitive_type] = ACTIONS(1155), @@ -24858,7 +24862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1155), [sym_comment] = ACTIONS(3), }, - [86] = { + [85] = { [sym_identifier] = ACTIONS(1159), [aux_sym_preproc_include_token1] = ACTIONS(1159), [aux_sym_preproc_def_token1] = ACTIONS(1159), @@ -24913,6 +24917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1159), [anon_sym__Noreturn] = ACTIONS(1159), [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym__Nonnull] = ACTIONS(1159), [anon_sym_alignas] = ACTIONS(1159), [anon_sym__Alignas] = ACTIONS(1159), [sym_primitive_type] = ACTIONS(1159), @@ -24962,7 +24967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, - [87] = { + [86] = { [sym_identifier] = ACTIONS(1163), [aux_sym_preproc_include_token1] = ACTIONS(1163), [aux_sym_preproc_def_token1] = ACTIONS(1163), @@ -25017,6 +25022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1163), [anon_sym__Noreturn] = ACTIONS(1163), [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym__Nonnull] = ACTIONS(1163), [anon_sym_alignas] = ACTIONS(1163), [anon_sym__Alignas] = ACTIONS(1163), [sym_primitive_type] = ACTIONS(1163), @@ -25066,18 +25072,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, - [88] = { + [87] = { + [ts_builtin_sym_end] = ACTIONS(1165), [sym_identifier] = ACTIONS(1163), [aux_sym_preproc_include_token1] = ACTIONS(1163), [aux_sym_preproc_def_token1] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1165), + [anon_sym_RPAREN] = ACTIONS(1165), [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token2] = ACTIONS(1163), [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [aux_sym_preproc_else_token1] = ACTIONS(1163), - [aux_sym_preproc_elif_token1] = ACTIONS(1163), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1163), [sym_preproc_directive] = ACTIONS(1163), [anon_sym_LPAREN2] = ACTIONS(1165), [anon_sym_BANG] = ACTIONS(1165), @@ -25121,6 +25125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1163), [anon_sym__Noreturn] = ACTIONS(1163), [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym__Nonnull] = ACTIONS(1163), [anon_sym_alignas] = ACTIONS(1163), [anon_sym__Alignas] = ACTIONS(1163), [sym_primitive_type] = ACTIONS(1163), @@ -25140,6 +25145,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(1163), [anon_sym_goto] = ACTIONS(1163), [anon_sym___try] = ACTIONS(1163), + [anon_sym___except] = ACTIONS(1163), + [anon_sym___finally] = ACTIONS(1163), [anon_sym___leave] = ACTIONS(1163), [anon_sym_DASH_DASH] = ACTIONS(1165), [anon_sym_PLUS_PLUS] = ACTIONS(1165), @@ -25170,7 +25177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, - [89] = { + [88] = { [sym_identifier] = ACTIONS(1167), [aux_sym_preproc_include_token1] = ACTIONS(1167), [aux_sym_preproc_def_token1] = ACTIONS(1167), @@ -25225,6 +25232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1167), [anon_sym__Noreturn] = ACTIONS(1167), [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym__Nonnull] = ACTIONS(1167), [anon_sym_alignas] = ACTIONS(1167), [anon_sym__Alignas] = ACTIONS(1167), [sym_primitive_type] = ACTIONS(1167), @@ -25274,7 +25282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, - [90] = { + [89] = { [sym_identifier] = ACTIONS(1171), [aux_sym_preproc_include_token1] = ACTIONS(1171), [aux_sym_preproc_def_token1] = ACTIONS(1171), @@ -25329,6 +25337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1171), [anon_sym__Noreturn] = ACTIONS(1171), [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym__Nonnull] = ACTIONS(1171), [anon_sym_alignas] = ACTIONS(1171), [anon_sym__Alignas] = ACTIONS(1171), [sym_primitive_type] = ACTIONS(1171), @@ -25378,7 +25387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, - [91] = { + [90] = { [sym_identifier] = ACTIONS(1175), [aux_sym_preproc_include_token1] = ACTIONS(1175), [aux_sym_preproc_def_token1] = ACTIONS(1175), @@ -25433,6 +25442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1175), [anon_sym__Noreturn] = ACTIONS(1175), [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym__Nonnull] = ACTIONS(1175), [anon_sym_alignas] = ACTIONS(1175), [anon_sym__Alignas] = ACTIONS(1175), [sym_primitive_type] = ACTIONS(1175), @@ -25482,7 +25492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, - [92] = { + [91] = { [sym_identifier] = ACTIONS(1179), [aux_sym_preproc_include_token1] = ACTIONS(1179), [aux_sym_preproc_def_token1] = ACTIONS(1179), @@ -25537,6 +25547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1179), [anon_sym__Noreturn] = ACTIONS(1179), [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym__Nonnull] = ACTIONS(1179), [anon_sym_alignas] = ACTIONS(1179), [anon_sym__Alignas] = ACTIONS(1179), [sym_primitive_type] = ACTIONS(1179), @@ -25586,7 +25597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, - [93] = { + [92] = { [sym_identifier] = ACTIONS(1183), [aux_sym_preproc_include_token1] = ACTIONS(1183), [aux_sym_preproc_def_token1] = ACTIONS(1183), @@ -25641,6 +25652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1183), [anon_sym__Noreturn] = ACTIONS(1183), [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym__Nonnull] = ACTIONS(1183), [anon_sym_alignas] = ACTIONS(1183), [anon_sym__Alignas] = ACTIONS(1183), [sym_primitive_type] = ACTIONS(1183), @@ -25690,7 +25702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, - [94] = { + [93] = { [sym_identifier] = ACTIONS(1187), [aux_sym_preproc_include_token1] = ACTIONS(1187), [aux_sym_preproc_def_token1] = ACTIONS(1187), @@ -25745,6 +25757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1187), [anon_sym__Noreturn] = ACTIONS(1187), [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym__Nonnull] = ACTIONS(1187), [anon_sym_alignas] = ACTIONS(1187), [anon_sym__Alignas] = ACTIONS(1187), [sym_primitive_type] = ACTIONS(1187), @@ -25794,7 +25807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [95] = { + [94] = { [sym_identifier] = ACTIONS(1187), [aux_sym_preproc_include_token1] = ACTIONS(1187), [aux_sym_preproc_def_token1] = ACTIONS(1187), @@ -25849,6 +25862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1187), [anon_sym__Noreturn] = ACTIONS(1187), [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym__Nonnull] = ACTIONS(1187), [anon_sym_alignas] = ACTIONS(1187), [anon_sym__Alignas] = ACTIONS(1187), [sym_primitive_type] = ACTIONS(1187), @@ -25898,7 +25912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [96] = { + [95] = { [sym_identifier] = ACTIONS(1191), [aux_sym_preproc_include_token1] = ACTIONS(1191), [aux_sym_preproc_def_token1] = ACTIONS(1191), @@ -25953,6 +25967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1191), [anon_sym__Noreturn] = ACTIONS(1191), [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym__Nonnull] = ACTIONS(1191), [anon_sym_alignas] = ACTIONS(1191), [anon_sym__Alignas] = ACTIONS(1191), [sym_primitive_type] = ACTIONS(1191), @@ -26002,6 +26017,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, + [96] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [aux_sym_preproc_else_token1] = ACTIONS(1195), + [aux_sym_preproc_elif_token1] = ACTIONS(1195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + }, [97] = { [sym_identifier] = ACTIONS(1195), [aux_sym_preproc_include_token1] = ACTIONS(1195), @@ -26057,6 +26177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1195), [anon_sym__Noreturn] = ACTIONS(1195), [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), [anon_sym_alignas] = ACTIONS(1195), [anon_sym__Alignas] = ACTIONS(1195), [sym_primitive_type] = ACTIONS(1195), @@ -26161,6 +26282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1199), [anon_sym__Noreturn] = ACTIONS(1199), [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym__Nonnull] = ACTIONS(1199), [anon_sym_alignas] = ACTIONS(1199), [anon_sym__Alignas] = ACTIONS(1199), [sym_primitive_type] = ACTIONS(1199), @@ -26211,6 +26333,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [99] = { + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token2] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [aux_sym_preproc_else_token1] = ACTIONS(1199), + [aux_sym_preproc_elif_token1] = ACTIONS(1199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym__Nonnull] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), + [sym_comment] = ACTIONS(3), + }, + [100] = { [sym_identifier] = ACTIONS(1203), [aux_sym_preproc_include_token1] = ACTIONS(1203), [aux_sym_preproc_def_token1] = ACTIONS(1203), @@ -26265,6 +26492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1203), [anon_sym__Noreturn] = ACTIONS(1203), [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym__Nonnull] = ACTIONS(1203), [anon_sym_alignas] = ACTIONS(1203), [anon_sym__Alignas] = ACTIONS(1203), [sym_primitive_type] = ACTIONS(1203), @@ -26314,7 +26542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [100] = { + [101] = { [sym_identifier] = ACTIONS(1207), [aux_sym_preproc_include_token1] = ACTIONS(1207), [aux_sym_preproc_def_token1] = ACTIONS(1207), @@ -26369,6 +26597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1207), [anon_sym__Noreturn] = ACTIONS(1207), [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym__Nonnull] = ACTIONS(1207), [anon_sym_alignas] = ACTIONS(1207), [anon_sym__Alignas] = ACTIONS(1207), [sym_primitive_type] = ACTIONS(1207), @@ -26418,7 +26647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [101] = { + [102] = { [sym_identifier] = ACTIONS(1211), [aux_sym_preproc_include_token1] = ACTIONS(1211), [aux_sym_preproc_def_token1] = ACTIONS(1211), @@ -26473,6 +26702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1211), [anon_sym__Noreturn] = ACTIONS(1211), [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym__Nonnull] = ACTIONS(1211), [anon_sym_alignas] = ACTIONS(1211), [anon_sym__Alignas] = ACTIONS(1211), [sym_primitive_type] = ACTIONS(1211), @@ -26522,7 +26752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, - [102] = { + [103] = { [sym_identifier] = ACTIONS(1215), [aux_sym_preproc_include_token1] = ACTIONS(1215), [aux_sym_preproc_def_token1] = ACTIONS(1215), @@ -26577,6 +26807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1215), [anon_sym__Noreturn] = ACTIONS(1215), [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym__Nonnull] = ACTIONS(1215), [anon_sym_alignas] = ACTIONS(1215), [anon_sym__Alignas] = ACTIONS(1215), [sym_primitive_type] = ACTIONS(1215), @@ -26626,110 +26857,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [103] = { - [sym_identifier] = ACTIONS(1219), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token2] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), - [aux_sym_preproc_else_token1] = ACTIONS(1219), - [aux_sym_preproc_elif_token1] = ACTIONS(1219), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1219), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1219), - [sym_preproc_directive] = ACTIONS(1219), - [anon_sym_LPAREN2] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym___attribute__] = ACTIONS(1219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1219), - [anon_sym___cdecl] = ACTIONS(1219), - [anon_sym___clrcall] = ACTIONS(1219), - [anon_sym___stdcall] = ACTIONS(1219), - [anon_sym___fastcall] = ACTIONS(1219), - [anon_sym___thiscall] = ACTIONS(1219), - [anon_sym___vectorcall] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1219), - [anon_sym_unsigned] = ACTIONS(1219), - [anon_sym_long] = ACTIONS(1219), - [anon_sym_short] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_auto] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_inline] = ACTIONS(1219), - [anon_sym___inline] = ACTIONS(1219), - [anon_sym___inline__] = ACTIONS(1219), - [anon_sym___forceinline] = ACTIONS(1219), - [anon_sym_thread_local] = ACTIONS(1219), - [anon_sym___thread] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_constexpr] = ACTIONS(1219), - [anon_sym_volatile] = ACTIONS(1219), - [anon_sym_restrict] = ACTIONS(1219), - [anon_sym___restrict__] = ACTIONS(1219), - [anon_sym__Atomic] = ACTIONS(1219), - [anon_sym__Noreturn] = ACTIONS(1219), - [anon_sym_noreturn] = ACTIONS(1219), - [anon_sym_alignas] = ACTIONS(1219), - [anon_sym__Alignas] = ACTIONS(1219), - [sym_primitive_type] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_union] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_goto] = ACTIONS(1219), - [anon_sym___try] = ACTIONS(1219), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1219), - [anon_sym___alignof__] = ACTIONS(1219), - [anon_sym___alignof] = ACTIONS(1219), - [anon_sym__alignof] = ACTIONS(1219), - [anon_sym_alignof] = ACTIONS(1219), - [anon_sym__Alignof] = ACTIONS(1219), - [anon_sym_offsetof] = ACTIONS(1219), - [anon_sym__Generic] = ACTIONS(1219), - [anon_sym_asm] = ACTIONS(1219), - [anon_sym___asm__] = ACTIONS(1219), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_L_SQUOTE] = ACTIONS(1221), - [anon_sym_u_SQUOTE] = ACTIONS(1221), - [anon_sym_U_SQUOTE] = ACTIONS(1221), - [anon_sym_u8_SQUOTE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_L_DQUOTE] = ACTIONS(1221), - [anon_sym_u_DQUOTE] = ACTIONS(1221), - [anon_sym_U_DQUOTE] = ACTIONS(1221), - [anon_sym_u8_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [anon_sym_NULL] = ACTIONS(1219), - [anon_sym_nullptr] = ACTIONS(1219), - [sym_comment] = ACTIONS(3), - }, [104] = { [sym_identifier] = ACTIONS(1219), [aux_sym_preproc_include_token1] = ACTIONS(1219), @@ -26785,6 +26912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1219), [anon_sym__Noreturn] = ACTIONS(1219), [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym__Nonnull] = ACTIONS(1219), [anon_sym_alignas] = ACTIONS(1219), [anon_sym__Alignas] = ACTIONS(1219), [sym_primitive_type] = ACTIONS(1219), @@ -26889,6 +27017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1223), [anon_sym__Noreturn] = ACTIONS(1223), [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym__Nonnull] = ACTIONS(1223), [anon_sym_alignas] = ACTIONS(1223), [anon_sym__Alignas] = ACTIONS(1223), [sym_primitive_type] = ACTIONS(1223), @@ -26993,6 +27122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1227), [anon_sym__Noreturn] = ACTIONS(1227), [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym__Nonnull] = ACTIONS(1227), [anon_sym_alignas] = ACTIONS(1227), [anon_sym__Alignas] = ACTIONS(1227), [sym_primitive_type] = ACTIONS(1227), @@ -27097,6 +27227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1231), [anon_sym__Noreturn] = ACTIONS(1231), [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym__Nonnull] = ACTIONS(1231), [anon_sym_alignas] = ACTIONS(1231), [anon_sym__Alignas] = ACTIONS(1231), [sym_primitive_type] = ACTIONS(1231), @@ -27147,6 +27278,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [108] = { + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token2] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [aux_sym_preproc_else_token1] = ACTIONS(1231), + [aux_sym_preproc_elif_token1] = ACTIONS(1231), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym__Nonnull] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + }, + [109] = { [sym_identifier] = ACTIONS(1235), [aux_sym_preproc_include_token1] = ACTIONS(1235), [aux_sym_preproc_def_token1] = ACTIONS(1235), @@ -27201,6 +27437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1235), [anon_sym__Noreturn] = ACTIONS(1235), [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym__Nonnull] = ACTIONS(1235), [anon_sym_alignas] = ACTIONS(1235), [anon_sym__Alignas] = ACTIONS(1235), [sym_primitive_type] = ACTIONS(1235), @@ -27250,110 +27487,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, - [109] = { - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___except] = ACTIONS(1139), - [anon_sym___finally] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - }, [110] = { [sym_identifier] = ACTIONS(1239), [aux_sym_preproc_include_token1] = ACTIONS(1239), @@ -27409,6 +27542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1239), [anon_sym__Noreturn] = ACTIONS(1239), [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym__Nonnull] = ACTIONS(1239), [anon_sym_alignas] = ACTIONS(1239), [anon_sym__Alignas] = ACTIONS(1239), [sym_primitive_type] = ACTIONS(1239), @@ -27513,6 +27647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1243), [anon_sym__Noreturn] = ACTIONS(1243), [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym__Nonnull] = ACTIONS(1243), [anon_sym_alignas] = ACTIONS(1243), [anon_sym__Alignas] = ACTIONS(1243), [sym_primitive_type] = ACTIONS(1243), @@ -27563,6 +27698,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [112] = { + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym__Nonnull] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___except] = ACTIONS(1131), + [anon_sym___finally] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), + [sym_comment] = ACTIONS(3), + }, + [113] = { [sym_identifier] = ACTIONS(1247), [aux_sym_preproc_include_token1] = ACTIONS(1247), [aux_sym_preproc_def_token1] = ACTIONS(1247), @@ -27617,6 +27857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1247), [anon_sym__Noreturn] = ACTIONS(1247), [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym__Nonnull] = ACTIONS(1247), [anon_sym_alignas] = ACTIONS(1247), [anon_sym__Alignas] = ACTIONS(1247), [sym_primitive_type] = ACTIONS(1247), @@ -27666,110 +27907,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, - [113] = { - [sym_identifier] = ACTIONS(1183), - [aux_sym_preproc_include_token1] = ACTIONS(1183), - [aux_sym_preproc_def_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token2] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), - [aux_sym_preproc_else_token1] = ACTIONS(1183), - [aux_sym_preproc_elif_token1] = ACTIONS(1183), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym___extension__] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym___attribute__] = ACTIONS(1183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), - [anon_sym___declspec] = ACTIONS(1183), - [anon_sym___cdecl] = ACTIONS(1183), - [anon_sym___clrcall] = ACTIONS(1183), - [anon_sym___stdcall] = ACTIONS(1183), - [anon_sym___fastcall] = ACTIONS(1183), - [anon_sym___thiscall] = ACTIONS(1183), - [anon_sym___vectorcall] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_inline] = ACTIONS(1183), - [anon_sym___inline] = ACTIONS(1183), - [anon_sym___inline__] = ACTIONS(1183), - [anon_sym___forceinline] = ACTIONS(1183), - [anon_sym_thread_local] = ACTIONS(1183), - [anon_sym___thread] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_constexpr] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym___restrict__] = ACTIONS(1183), - [anon_sym__Atomic] = ACTIONS(1183), - [anon_sym__Noreturn] = ACTIONS(1183), - [anon_sym_noreturn] = ACTIONS(1183), - [anon_sym_alignas] = ACTIONS(1183), - [anon_sym__Alignas] = ACTIONS(1183), - [sym_primitive_type] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym___try] = ACTIONS(1183), - [anon_sym___leave] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym___alignof__] = ACTIONS(1183), - [anon_sym___alignof] = ACTIONS(1183), - [anon_sym__alignof] = ACTIONS(1183), - [anon_sym_alignof] = ACTIONS(1183), - [anon_sym__Alignof] = ACTIONS(1183), - [anon_sym_offsetof] = ACTIONS(1183), - [anon_sym__Generic] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym___asm__] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1185), - [anon_sym_L_SQUOTE] = ACTIONS(1185), - [anon_sym_u_SQUOTE] = ACTIONS(1185), - [anon_sym_U_SQUOTE] = ACTIONS(1185), - [anon_sym_u8_SQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [anon_sym_L_DQUOTE] = ACTIONS(1185), - [anon_sym_u_DQUOTE] = ACTIONS(1185), - [anon_sym_U_DQUOTE] = ACTIONS(1185), - [anon_sym_u8_DQUOTE] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [anon_sym_NULL] = ACTIONS(1183), - [anon_sym_nullptr] = ACTIONS(1183), - [sym_comment] = ACTIONS(3), - }, [114] = { [sym_identifier] = ACTIONS(1251), [aux_sym_preproc_include_token1] = ACTIONS(1251), @@ -27825,6 +27962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1251), [anon_sym__Noreturn] = ACTIONS(1251), [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym__Nonnull] = ACTIONS(1251), [anon_sym_alignas] = ACTIONS(1251), [anon_sym__Alignas] = ACTIONS(1251), [sym_primitive_type] = ACTIONS(1251), @@ -27928,6 +28066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1255), [anon_sym__Noreturn] = ACTIONS(1255), [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym__Nonnull] = ACTIONS(1255), [anon_sym_alignas] = ACTIONS(1255), [anon_sym__Alignas] = ACTIONS(1255), [sym_primitive_type] = ACTIONS(1255), @@ -28031,6 +28170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1259), [anon_sym__Noreturn] = ACTIONS(1259), [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym__Nonnull] = ACTIONS(1259), [anon_sym_alignas] = ACTIONS(1259), [anon_sym__Alignas] = ACTIONS(1259), [sym_primitive_type] = ACTIONS(1259), @@ -28134,6 +28274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1263), [anon_sym__Noreturn] = ACTIONS(1263), [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym__Nonnull] = ACTIONS(1263), [anon_sym_alignas] = ACTIONS(1263), [anon_sym__Alignas] = ACTIONS(1263), [sym_primitive_type] = ACTIONS(1263), @@ -28237,6 +28378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1267), [anon_sym__Noreturn] = ACTIONS(1267), [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), [anon_sym_alignas] = ACTIONS(1267), [anon_sym__Alignas] = ACTIONS(1267), [sym_primitive_type] = ACTIONS(1267), @@ -28340,6 +28482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1271), [anon_sym__Noreturn] = ACTIONS(1271), [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym__Nonnull] = ACTIONS(1271), [anon_sym_alignas] = ACTIONS(1271), [anon_sym__Alignas] = ACTIONS(1271), [sym_primitive_type] = ACTIONS(1271), @@ -28443,6 +28586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1275), [anon_sym__Noreturn] = ACTIONS(1275), [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym__Nonnull] = ACTIONS(1275), [anon_sym_alignas] = ACTIONS(1275), [anon_sym__Alignas] = ACTIONS(1275), [sym_primitive_type] = ACTIONS(1275), @@ -28546,6 +28690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1279), [anon_sym__Noreturn] = ACTIONS(1279), [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym__Nonnull] = ACTIONS(1279), [anon_sym_alignas] = ACTIONS(1279), [anon_sym__Alignas] = ACTIONS(1279), [sym_primitive_type] = ACTIONS(1279), @@ -28649,6 +28794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1283), [anon_sym__Noreturn] = ACTIONS(1283), [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym__Nonnull] = ACTIONS(1283), [anon_sym_alignas] = ACTIONS(1283), [anon_sym__Alignas] = ACTIONS(1283), [sym_primitive_type] = ACTIONS(1283), @@ -28752,6 +28898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1287), [anon_sym__Noreturn] = ACTIONS(1287), [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym__Nonnull] = ACTIONS(1287), [anon_sym_alignas] = ACTIONS(1287), [anon_sym__Alignas] = ACTIONS(1287), [sym_primitive_type] = ACTIONS(1287), @@ -28855,6 +29002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1291), [anon_sym__Noreturn] = ACTIONS(1291), [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym__Nonnull] = ACTIONS(1291), [anon_sym_alignas] = ACTIONS(1291), [anon_sym__Alignas] = ACTIONS(1291), [sym_primitive_type] = ACTIONS(1291), @@ -28958,6 +29106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1295), [anon_sym__Noreturn] = ACTIONS(1295), [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym__Nonnull] = ACTIONS(1295), [anon_sym_alignas] = ACTIONS(1295), [anon_sym__Alignas] = ACTIONS(1295), [sym_primitive_type] = ACTIONS(1295), @@ -29061,6 +29210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1299), [anon_sym__Noreturn] = ACTIONS(1299), [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym__Nonnull] = ACTIONS(1299), [anon_sym_alignas] = ACTIONS(1299), [anon_sym__Alignas] = ACTIONS(1299), [sym_primitive_type] = ACTIONS(1299), @@ -29164,6 +29314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1303), [anon_sym__Noreturn] = ACTIONS(1303), [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym__Nonnull] = ACTIONS(1303), [anon_sym_alignas] = ACTIONS(1303), [anon_sym__Alignas] = ACTIONS(1303), [sym_primitive_type] = ACTIONS(1303), @@ -29267,6 +29418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1307), [anon_sym__Noreturn] = ACTIONS(1307), [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym__Nonnull] = ACTIONS(1307), [anon_sym_alignas] = ACTIONS(1307), [anon_sym__Alignas] = ACTIONS(1307), [sym_primitive_type] = ACTIONS(1307), @@ -29370,6 +29522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1311), [anon_sym__Noreturn] = ACTIONS(1311), [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym__Nonnull] = ACTIONS(1311), [anon_sym_alignas] = ACTIONS(1311), [anon_sym__Alignas] = ACTIONS(1311), [sym_primitive_type] = ACTIONS(1311), @@ -29473,6 +29626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1315), [anon_sym__Noreturn] = ACTIONS(1315), [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym__Nonnull] = ACTIONS(1315), [anon_sym_alignas] = ACTIONS(1315), [anon_sym__Alignas] = ACTIONS(1315), [sym_primitive_type] = ACTIONS(1315), @@ -29576,6 +29730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1319), [anon_sym__Noreturn] = ACTIONS(1319), [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym__Nonnull] = ACTIONS(1319), [anon_sym_alignas] = ACTIONS(1319), [anon_sym__Alignas] = ACTIONS(1319), [sym_primitive_type] = ACTIONS(1319), @@ -29679,6 +29834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1323), [anon_sym__Noreturn] = ACTIONS(1323), [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym__Nonnull] = ACTIONS(1323), [anon_sym_alignas] = ACTIONS(1323), [anon_sym__Alignas] = ACTIONS(1323), [sym_primitive_type] = ACTIONS(1323), @@ -29782,6 +29938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1327), [anon_sym__Noreturn] = ACTIONS(1327), [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym__Nonnull] = ACTIONS(1327), [anon_sym_alignas] = ACTIONS(1327), [anon_sym__Alignas] = ACTIONS(1327), [sym_primitive_type] = ACTIONS(1327), @@ -29885,6 +30042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1331), [anon_sym__Noreturn] = ACTIONS(1331), [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym__Nonnull] = ACTIONS(1331), [anon_sym_alignas] = ACTIONS(1331), [anon_sym__Alignas] = ACTIONS(1331), [sym_primitive_type] = ACTIONS(1331), @@ -29988,6 +30146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1335), [anon_sym__Noreturn] = ACTIONS(1335), [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym__Nonnull] = ACTIONS(1335), [anon_sym_alignas] = ACTIONS(1335), [anon_sym__Alignas] = ACTIONS(1335), [sym_primitive_type] = ACTIONS(1335), @@ -30091,6 +30250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1339), [anon_sym__Noreturn] = ACTIONS(1339), [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym__Nonnull] = ACTIONS(1339), [anon_sym_alignas] = ACTIONS(1339), [anon_sym__Alignas] = ACTIONS(1339), [sym_primitive_type] = ACTIONS(1339), @@ -30194,6 +30354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1343), [anon_sym__Noreturn] = ACTIONS(1343), [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym__Nonnull] = ACTIONS(1343), [anon_sym_alignas] = ACTIONS(1343), [anon_sym__Alignas] = ACTIONS(1343), [sym_primitive_type] = ACTIONS(1343), @@ -30255,19 +30416,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(1347), [aux_sym_preproc_elifdef_token2] = ACTIONS(1347), [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), [anon_sym___extension__] = ACTIONS(1347), [anon_sym_typedef] = ACTIONS(1347), [anon_sym_extern] = ACTIONS(1347), [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), [anon_sym___declspec] = ACTIONS(1347), [anon_sym___cdecl] = ACTIONS(1347), [anon_sym___clrcall] = ACTIONS(1347), @@ -30275,7 +30436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1347), [anon_sym___thiscall] = ACTIONS(1347), [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1349), [anon_sym_signed] = ACTIONS(1347), [anon_sym_unsigned] = ACTIONS(1347), [anon_sym_long] = ACTIONS(1347), @@ -30297,6 +30458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1347), [anon_sym__Noreturn] = ACTIONS(1347), [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym__Nonnull] = ACTIONS(1347), [anon_sym_alignas] = ACTIONS(1347), [anon_sym__Alignas] = ACTIONS(1347), [sym_primitive_type] = ACTIONS(1347), @@ -30316,8 +30478,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1347), [anon_sym___try] = ACTIONS(1347), [anon_sym___leave] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_sizeof] = ACTIONS(1347), [anon_sym___alignof__] = ACTIONS(1347), [anon_sym___alignof] = ACTIONS(1347), @@ -30328,17 +30490,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(1347), [anon_sym_asm] = ACTIONS(1347), [anon_sym___asm__] = ACTIONS(1347), - [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_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), [sym_true] = ACTIONS(1347), [sym_false] = ACTIONS(1347), [anon_sym_NULL] = ACTIONS(1347), @@ -30346,106 +30508,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [139] = { - [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_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), - [anon_sym_alignas] = ACTIONS(1353), - [anon_sym__Alignas] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym___try] = ACTIONS(1353), - [anon_sym___leave] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym___alignof__] = ACTIONS(1353), - [anon_sym___alignof] = ACTIONS(1353), - [anon_sym__alignof] = ACTIONS(1353), - [anon_sym_alignof] = ACTIONS(1353), - [anon_sym__Alignof] = ACTIONS(1353), - [anon_sym_offsetof] = ACTIONS(1353), - [anon_sym__Generic] = ACTIONS(1353), - [anon_sym_asm] = ACTIONS(1353), - [anon_sym___asm__] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_NULL] = ACTIONS(1353), - [anon_sym_nullptr] = ACTIONS(1353), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token2] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [aux_sym_preproc_else_token1] = ACTIONS(1351), + [aux_sym_preproc_elif_token1] = ACTIONS(1351), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym__Nonnull] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(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(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, [140] = { @@ -30503,6 +30666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1357), [anon_sym__Noreturn] = ACTIONS(1357), [anon_sym_noreturn] = ACTIONS(1357), + [anon_sym__Nonnull] = ACTIONS(1357), [anon_sym_alignas] = ACTIONS(1357), [anon_sym__Alignas] = ACTIONS(1357), [sym_primitive_type] = ACTIONS(1357), @@ -30606,6 +30770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1361), [anon_sym__Noreturn] = ACTIONS(1361), [anon_sym_noreturn] = ACTIONS(1361), + [anon_sym__Nonnull] = ACTIONS(1361), [anon_sym_alignas] = ACTIONS(1361), [anon_sym__Alignas] = ACTIONS(1361), [sym_primitive_type] = ACTIONS(1361), @@ -30709,6 +30874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1365), [anon_sym__Noreturn] = ACTIONS(1365), [anon_sym_noreturn] = ACTIONS(1365), + [anon_sym__Nonnull] = ACTIONS(1365), [anon_sym_alignas] = ACTIONS(1365), [anon_sym__Alignas] = ACTIONS(1365), [sym_primitive_type] = ACTIONS(1365), @@ -30758,108 +30924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [143] = { - [sym_else_clause] = STATE(224), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_identifier] = ACTIONS(1117), - [aux_sym_preproc_include_token1] = ACTIONS(1117), - [aux_sym_preproc_def_token1] = ACTIONS(1117), - [aux_sym_preproc_if_token1] = ACTIONS(1117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), - [sym_preproc_directive] = ACTIONS(1117), - [anon_sym_LPAREN2] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym___extension__] = ACTIONS(1117), - [anon_sym_typedef] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym___attribute__] = ACTIONS(1117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), - [anon_sym___declspec] = ACTIONS(1117), - [anon_sym___cdecl] = ACTIONS(1117), - [anon_sym___clrcall] = ACTIONS(1117), - [anon_sym___stdcall] = ACTIONS(1117), - [anon_sym___fastcall] = ACTIONS(1117), - [anon_sym___thiscall] = ACTIONS(1117), - [anon_sym___vectorcall] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_signed] = ACTIONS(1117), - [anon_sym_unsigned] = ACTIONS(1117), - [anon_sym_long] = ACTIONS(1117), - [anon_sym_short] = ACTIONS(1117), - [anon_sym_static] = ACTIONS(1117), - [anon_sym_auto] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_inline] = ACTIONS(1117), - [anon_sym___inline] = ACTIONS(1117), - [anon_sym___inline__] = ACTIONS(1117), - [anon_sym___forceinline] = ACTIONS(1117), - [anon_sym_thread_local] = ACTIONS(1117), - [anon_sym___thread] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_constexpr] = ACTIONS(1117), - [anon_sym_volatile] = ACTIONS(1117), - [anon_sym_restrict] = ACTIONS(1117), - [anon_sym___restrict__] = ACTIONS(1117), - [anon_sym__Atomic] = ACTIONS(1117), - [anon_sym__Noreturn] = ACTIONS(1117), - [anon_sym_noreturn] = ACTIONS(1117), - [anon_sym_alignas] = ACTIONS(1117), - [anon_sym__Alignas] = ACTIONS(1117), - [sym_primitive_type] = ACTIONS(1117), - [anon_sym_enum] = ACTIONS(1117), - [anon_sym_struct] = ACTIONS(1117), - [anon_sym_union] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1117), - [anon_sym_case] = ACTIONS(1117), - [anon_sym_default] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym___try] = ACTIONS(1117), - [anon_sym___leave] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_sizeof] = ACTIONS(1117), - [anon_sym___alignof__] = ACTIONS(1117), - [anon_sym___alignof] = ACTIONS(1117), - [anon_sym__alignof] = ACTIONS(1117), - [anon_sym_alignof] = ACTIONS(1117), - [anon_sym__Alignof] = ACTIONS(1117), - [anon_sym_offsetof] = ACTIONS(1117), - [anon_sym__Generic] = ACTIONS(1117), - [anon_sym_asm] = ACTIONS(1117), - [anon_sym___asm__] = ACTIONS(1117), - [sym_number_literal] = ACTIONS(1119), - [anon_sym_L_SQUOTE] = ACTIONS(1119), - [anon_sym_u_SQUOTE] = ACTIONS(1119), - [anon_sym_U_SQUOTE] = ACTIONS(1119), - [anon_sym_u8_SQUOTE] = ACTIONS(1119), - [anon_sym_SQUOTE] = ACTIONS(1119), - [anon_sym_L_DQUOTE] = ACTIONS(1119), - [anon_sym_u_DQUOTE] = ACTIONS(1119), - [anon_sym_U_DQUOTE] = ACTIONS(1119), - [anon_sym_u8_DQUOTE] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [anon_sym_nullptr] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - }, - [144] = { - [sym_else_clause] = STATE(162), + [sym_else_clause] = STATE(164), [sym_identifier] = ACTIONS(1117), [aux_sym_preproc_include_token1] = ACTIONS(1117), [aux_sym_preproc_def_token1] = ACTIONS(1117), @@ -30910,6 +30975,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1117), [anon_sym__Noreturn] = ACTIONS(1117), [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym__Nonnull] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1369), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_case] = ACTIONS(1117), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_else_clause] = STATE(205), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1117), + [aux_sym_preproc_def_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token1] = ACTIONS(1117), + [aux_sym_preproc_if_token2] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), + [sym_preproc_directive] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym___cdecl] = ACTIONS(1117), + [anon_sym___clrcall] = ACTIONS(1117), + [anon_sym___stdcall] = ACTIONS(1117), + [anon_sym___fastcall] = ACTIONS(1117), + [anon_sym___thiscall] = ACTIONS(1117), + [anon_sym___vectorcall] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym__Nonnull] = ACTIONS(1117), [anon_sym_alignas] = ACTIONS(1117), [anon_sym__Alignas] = ACTIONS(1117), [sym_primitive_type] = ACTIONS(1117), @@ -30960,12 +31128,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [145] = { - [sym_else_clause] = STATE(203), + [sym_else_clause] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(1119), [sym_identifier] = ACTIONS(1117), [aux_sym_preproc_include_token1] = ACTIONS(1117), [aux_sym_preproc_def_token1] = ACTIONS(1117), [aux_sym_preproc_if_token1] = ACTIONS(1117), - [aux_sym_preproc_if_token2] = ACTIONS(1117), [aux_sym_preproc_ifdef_token1] = ACTIONS(1117), [aux_sym_preproc_ifdef_token2] = ACTIONS(1117), [sym_preproc_directive] = ACTIONS(1117), @@ -31011,6 +31179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1117), [anon_sym__Noreturn] = ACTIONS(1117), [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym__Nonnull] = ACTIONS(1117), [anon_sym_alignas] = ACTIONS(1117), [anon_sym__Alignas] = ACTIONS(1117), [sym_primitive_type] = ACTIONS(1117), @@ -31061,306 +31230,612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [146] = { - [sym_identifier] = ACTIONS(1131), - [aux_sym_preproc_include_token1] = ACTIONS(1131), - [aux_sym_preproc_def_token1] = ACTIONS(1131), - [aux_sym_preproc_if_token1] = ACTIONS(1131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), - [sym_preproc_directive] = ACTIONS(1131), - [anon_sym_LPAREN2] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym___extension__] = ACTIONS(1131), - [anon_sym_typedef] = ACTIONS(1131), - [anon_sym_extern] = ACTIONS(1131), - [anon_sym___attribute__] = ACTIONS(1131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), - [anon_sym___declspec] = ACTIONS(1131), - [anon_sym___cdecl] = ACTIONS(1131), - [anon_sym___clrcall] = ACTIONS(1131), - [anon_sym___stdcall] = ACTIONS(1131), - [anon_sym___fastcall] = ACTIONS(1131), - [anon_sym___thiscall] = ACTIONS(1131), - [anon_sym___vectorcall] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1133), - [anon_sym_signed] = ACTIONS(1131), - [anon_sym_unsigned] = ACTIONS(1131), - [anon_sym_long] = ACTIONS(1131), - [anon_sym_short] = ACTIONS(1131), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_auto] = ACTIONS(1131), - [anon_sym_register] = ACTIONS(1131), - [anon_sym_inline] = ACTIONS(1131), - [anon_sym___inline] = ACTIONS(1131), - [anon_sym___inline__] = ACTIONS(1131), - [anon_sym___forceinline] = ACTIONS(1131), - [anon_sym_thread_local] = ACTIONS(1131), - [anon_sym___thread] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_constexpr] = ACTIONS(1131), - [anon_sym_volatile] = ACTIONS(1131), - [anon_sym_restrict] = ACTIONS(1131), - [anon_sym___restrict__] = ACTIONS(1131), - [anon_sym__Atomic] = ACTIONS(1131), - [anon_sym__Noreturn] = ACTIONS(1131), - [anon_sym_noreturn] = ACTIONS(1131), - [anon_sym_alignas] = ACTIONS(1131), - [anon_sym__Alignas] = ACTIONS(1131), - [sym_primitive_type] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_switch] = ACTIONS(1131), - [anon_sym_case] = ACTIONS(1131), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_goto] = ACTIONS(1131), - [anon_sym___try] = ACTIONS(1131), - [anon_sym___leave] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [anon_sym_sizeof] = ACTIONS(1131), - [anon_sym___alignof__] = ACTIONS(1131), - [anon_sym___alignof] = ACTIONS(1131), - [anon_sym__alignof] = ACTIONS(1131), - [anon_sym_alignof] = ACTIONS(1131), - [anon_sym__Alignof] = ACTIONS(1131), - [anon_sym_offsetof] = ACTIONS(1131), - [anon_sym__Generic] = ACTIONS(1131), - [anon_sym_asm] = ACTIONS(1131), - [anon_sym___asm__] = ACTIONS(1131), - [sym_number_literal] = ACTIONS(1133), - [anon_sym_L_SQUOTE] = ACTIONS(1133), - [anon_sym_u_SQUOTE] = ACTIONS(1133), - [anon_sym_U_SQUOTE] = ACTIONS(1133), - [anon_sym_u8_SQUOTE] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_L_DQUOTE] = ACTIONS(1133), - [anon_sym_u_DQUOTE] = ACTIONS(1133), - [anon_sym_U_DQUOTE] = ACTIONS(1133), - [anon_sym_u8_DQUOTE] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [sym_true] = ACTIONS(1131), - [sym_false] = ACTIONS(1131), - [anon_sym_NULL] = ACTIONS(1131), - [anon_sym_nullptr] = ACTIONS(1131), + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym__Nonnull] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, [147] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [anon_sym_case] = ACTIONS(1239), - [anon_sym_default] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_goto] = ACTIONS(1239), - [anon_sym___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym__Nonnull] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, [148] = { - [sym_identifier] = ACTIONS(1247), - [aux_sym_preproc_include_token1] = ACTIONS(1247), - [aux_sym_preproc_def_token1] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), - [sym_preproc_directive] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym___extension__] = ACTIONS(1247), - [anon_sym_typedef] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym___attribute__] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), - [anon_sym___declspec] = ACTIONS(1247), - [anon_sym___cdecl] = ACTIONS(1247), - [anon_sym___clrcall] = ACTIONS(1247), - [anon_sym___stdcall] = ACTIONS(1247), - [anon_sym___fastcall] = ACTIONS(1247), - [anon_sym___thiscall] = ACTIONS(1247), - [anon_sym___vectorcall] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_long] = ACTIONS(1247), - [anon_sym_short] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_auto] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1247), - [anon_sym___inline] = ACTIONS(1247), - [anon_sym___inline__] = ACTIONS(1247), - [anon_sym___forceinline] = ACTIONS(1247), - [anon_sym_thread_local] = ACTIONS(1247), - [anon_sym___thread] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_constexpr] = ACTIONS(1247), - [anon_sym_volatile] = ACTIONS(1247), - [anon_sym_restrict] = ACTIONS(1247), - [anon_sym___restrict__] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1247), - [anon_sym__Noreturn] = ACTIONS(1247), - [anon_sym_noreturn] = ACTIONS(1247), - [anon_sym_alignas] = ACTIONS(1247), - [anon_sym__Alignas] = ACTIONS(1247), - [sym_primitive_type] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_switch] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_goto] = ACTIONS(1247), - [anon_sym___try] = ACTIONS(1247), - [anon_sym___leave] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1247), - [anon_sym___alignof__] = ACTIONS(1247), - [anon_sym___alignof] = ACTIONS(1247), - [anon_sym__alignof] = ACTIONS(1247), - [anon_sym_alignof] = ACTIONS(1247), - [anon_sym__Alignof] = ACTIONS(1247), - [anon_sym_offsetof] = ACTIONS(1247), - [anon_sym__Generic] = ACTIONS(1247), - [anon_sym_asm] = ACTIONS(1247), - [anon_sym___asm__] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1249), - [anon_sym_L_SQUOTE] = ACTIONS(1249), - [anon_sym_u_SQUOTE] = ACTIONS(1249), - [anon_sym_U_SQUOTE] = ACTIONS(1249), - [anon_sym_u8_SQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [anon_sym_L_DQUOTE] = ACTIONS(1249), - [anon_sym_u_DQUOTE] = ACTIONS(1249), - [anon_sym_U_DQUOTE] = ACTIONS(1249), - [anon_sym_u8_DQUOTE] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_true] = ACTIONS(1247), - [sym_false] = ACTIONS(1247), - [anon_sym_NULL] = ACTIONS(1247), - [anon_sym_nullptr] = ACTIONS(1247), + [sym_identifier] = ACTIONS(1163), + [aux_sym_preproc_include_token1] = ACTIONS(1163), + [aux_sym_preproc_def_token1] = ACTIONS(1163), + [aux_sym_preproc_if_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), + [sym_preproc_directive] = ACTIONS(1163), + [anon_sym_LPAREN2] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym___extension__] = ACTIONS(1163), + [anon_sym_typedef] = ACTIONS(1163), + [anon_sym_extern] = ACTIONS(1163), + [anon_sym___attribute__] = ACTIONS(1163), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1163), + [anon_sym___cdecl] = ACTIONS(1163), + [anon_sym___clrcall] = ACTIONS(1163), + [anon_sym___stdcall] = ACTIONS(1163), + [anon_sym___fastcall] = ACTIONS(1163), + [anon_sym___thiscall] = ACTIONS(1163), + [anon_sym___vectorcall] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1163), + [anon_sym_unsigned] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_auto] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1163), + [anon_sym___inline] = ACTIONS(1163), + [anon_sym___inline__] = ACTIONS(1163), + [anon_sym___forceinline] = ACTIONS(1163), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym___thread] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1163), + [anon_sym_constexpr] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_restrict] = ACTIONS(1163), + [anon_sym___restrict__] = ACTIONS(1163), + [anon_sym__Atomic] = ACTIONS(1163), + [anon_sym__Noreturn] = ACTIONS(1163), + [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym__Nonnull] = ACTIONS(1163), + [anon_sym_alignas] = ACTIONS(1163), + [anon_sym__Alignas] = ACTIONS(1163), + [sym_primitive_type] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(1163), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1163), + [anon_sym___try] = ACTIONS(1163), + [anon_sym___leave] = ACTIONS(1163), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_sizeof] = ACTIONS(1163), + [anon_sym___alignof__] = ACTIONS(1163), + [anon_sym___alignof] = ACTIONS(1163), + [anon_sym__alignof] = ACTIONS(1163), + [anon_sym_alignof] = ACTIONS(1163), + [anon_sym__Alignof] = ACTIONS(1163), + [anon_sym_offsetof] = ACTIONS(1163), + [anon_sym__Generic] = ACTIONS(1163), + [anon_sym_asm] = ACTIONS(1163), + [anon_sym___asm__] = ACTIONS(1163), + [sym_number_literal] = ACTIONS(1165), + [anon_sym_L_SQUOTE] = ACTIONS(1165), + [anon_sym_u_SQUOTE] = ACTIONS(1165), + [anon_sym_U_SQUOTE] = ACTIONS(1165), + [anon_sym_u8_SQUOTE] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_L_DQUOTE] = ACTIONS(1165), + [anon_sym_u_DQUOTE] = ACTIONS(1165), + [anon_sym_U_DQUOTE] = ACTIONS(1165), + [anon_sym_u8_DQUOTE] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [anon_sym_NULL] = ACTIONS(1163), + [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, [149] = { + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym__Nonnull] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), + [sym_comment] = ACTIONS(3), + }, + [150] = { + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym__Nonnull] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + }, + [151] = { + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym__Nonnull] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), + [sym_comment] = ACTIONS(3), + }, + [152] = { [sym_identifier] = ACTIONS(1143), [aux_sym_preproc_include_token1] = ACTIONS(1143), [aux_sym_preproc_def_token1] = ACTIONS(1143), @@ -31411,6 +31886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1143), [anon_sym__Noreturn] = ACTIONS(1143), [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), [anon_sym_alignas] = ACTIONS(1143), [anon_sym__Alignas] = ACTIONS(1143), [sym_primitive_type] = ACTIONS(1143), @@ -31460,107 +31936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(1145), - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1143), - [aux_sym_preproc_def_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym___extension__] = ACTIONS(1143), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym___attribute__] = ACTIONS(1143), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(1143), - [anon_sym___cdecl] = ACTIONS(1143), - [anon_sym___clrcall] = ACTIONS(1143), - [anon_sym___stdcall] = ACTIONS(1143), - [anon_sym___fastcall] = ACTIONS(1143), - [anon_sym___thiscall] = ACTIONS(1143), - [anon_sym___vectorcall] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_signed] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym___inline] = ACTIONS(1143), - [anon_sym___inline__] = ACTIONS(1143), - [anon_sym___forceinline] = ACTIONS(1143), - [anon_sym_thread_local] = ACTIONS(1143), - [anon_sym___thread] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_constexpr] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym___restrict__] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym__Noreturn] = ACTIONS(1143), - [anon_sym_noreturn] = ACTIONS(1143), - [anon_sym_alignas] = ACTIONS(1143), - [anon_sym__Alignas] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym___try] = ACTIONS(1143), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_sizeof] = ACTIONS(1143), - [anon_sym___alignof__] = ACTIONS(1143), - [anon_sym___alignof] = ACTIONS(1143), - [anon_sym__alignof] = ACTIONS(1143), - [anon_sym_alignof] = ACTIONS(1143), - [anon_sym__Alignof] = ACTIONS(1143), - [anon_sym_offsetof] = ACTIONS(1143), - [anon_sym__Generic] = ACTIONS(1143), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym___asm__] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1145), - [anon_sym_u_DQUOTE] = ACTIONS(1145), - [anon_sym_U_DQUOTE] = ACTIONS(1145), - [anon_sym_u8_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [anon_sym_NULL] = ACTIONS(1143), - [anon_sym_nullptr] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - }, - [151] = { + [153] = { [sym_identifier] = ACTIONS(1147), [aux_sym_preproc_include_token1] = ACTIONS(1147), [aux_sym_preproc_def_token1] = ACTIONS(1147), @@ -31611,6 +31987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1147), [anon_sym__Noreturn] = ACTIONS(1147), [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym__Nonnull] = ACTIONS(1147), [anon_sym_alignas] = ACTIONS(1147), [anon_sym__Alignas] = ACTIONS(1147), [sym_primitive_type] = ACTIONS(1147), @@ -31660,907 +32037,512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, - [152] = { - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1151), - [aux_sym_preproc_def_token1] = ACTIONS(1151), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), - [sym_preproc_directive] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1151), - [anon_sym_typedef] = ACTIONS(1151), - [anon_sym_extern] = ACTIONS(1151), - [anon_sym___attribute__] = ACTIONS(1151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1151), - [anon_sym___cdecl] = ACTIONS(1151), - [anon_sym___clrcall] = ACTIONS(1151), - [anon_sym___stdcall] = ACTIONS(1151), - [anon_sym___fastcall] = ACTIONS(1151), - [anon_sym___thiscall] = ACTIONS(1151), - [anon_sym___vectorcall] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1151), - [anon_sym_unsigned] = ACTIONS(1151), - [anon_sym_long] = ACTIONS(1151), - [anon_sym_short] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_auto] = ACTIONS(1151), - [anon_sym_register] = ACTIONS(1151), - [anon_sym_inline] = ACTIONS(1151), - [anon_sym___inline] = ACTIONS(1151), - [anon_sym___inline__] = ACTIONS(1151), - [anon_sym___forceinline] = ACTIONS(1151), - [anon_sym_thread_local] = ACTIONS(1151), - [anon_sym___thread] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_constexpr] = ACTIONS(1151), - [anon_sym_volatile] = ACTIONS(1151), - [anon_sym_restrict] = ACTIONS(1151), - [anon_sym___restrict__] = ACTIONS(1151), - [anon_sym__Atomic] = ACTIONS(1151), - [anon_sym__Noreturn] = ACTIONS(1151), - [anon_sym_noreturn] = ACTIONS(1151), - [anon_sym_alignas] = ACTIONS(1151), - [anon_sym__Alignas] = ACTIONS(1151), - [sym_primitive_type] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_switch] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_do] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_goto] = ACTIONS(1151), - [anon_sym___try] = ACTIONS(1151), - [anon_sym___leave] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1151), - [anon_sym___alignof__] = ACTIONS(1151), - [anon_sym___alignof] = ACTIONS(1151), - [anon_sym__alignof] = ACTIONS(1151), - [anon_sym_alignof] = ACTIONS(1151), - [anon_sym__Alignof] = ACTIONS(1151), - [anon_sym_offsetof] = ACTIONS(1151), - [anon_sym__Generic] = ACTIONS(1151), - [anon_sym_asm] = ACTIONS(1151), - [anon_sym___asm__] = ACTIONS(1151), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_NULL] = ACTIONS(1151), - [anon_sym_nullptr] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [sym_identifier] = ACTIONS(1243), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym___extension__] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym___attribute__] = ACTIONS(1243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1243), - [anon_sym___cdecl] = ACTIONS(1243), - [anon_sym___clrcall] = ACTIONS(1243), - [anon_sym___stdcall] = ACTIONS(1243), - [anon_sym___fastcall] = ACTIONS(1243), - [anon_sym___thiscall] = ACTIONS(1243), - [anon_sym___vectorcall] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1243), - [anon_sym_unsigned] = ACTIONS(1243), - [anon_sym_long] = ACTIONS(1243), - [anon_sym_short] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_auto] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_inline] = ACTIONS(1243), - [anon_sym___inline] = ACTIONS(1243), - [anon_sym___inline__] = ACTIONS(1243), - [anon_sym___forceinline] = ACTIONS(1243), - [anon_sym_thread_local] = ACTIONS(1243), - [anon_sym___thread] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_constexpr] = ACTIONS(1243), - [anon_sym_volatile] = ACTIONS(1243), - [anon_sym_restrict] = ACTIONS(1243), - [anon_sym___restrict__] = ACTIONS(1243), - [anon_sym__Atomic] = ACTIONS(1243), - [anon_sym__Noreturn] = ACTIONS(1243), - [anon_sym_noreturn] = ACTIONS(1243), - [anon_sym_alignas] = ACTIONS(1243), - [anon_sym__Alignas] = ACTIONS(1243), - [sym_primitive_type] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym___try] = ACTIONS(1243), - [anon_sym___leave] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1243), - [anon_sym___alignof__] = ACTIONS(1243), - [anon_sym___alignof] = ACTIONS(1243), - [anon_sym__alignof] = ACTIONS(1243), - [anon_sym_alignof] = ACTIONS(1243), - [anon_sym__Alignof] = ACTIONS(1243), - [anon_sym_offsetof] = ACTIONS(1243), - [anon_sym__Generic] = ACTIONS(1243), - [anon_sym_asm] = ACTIONS(1243), - [anon_sym___asm__] = ACTIONS(1243), - [sym_number_literal] = ACTIONS(1245), - [anon_sym_L_SQUOTE] = ACTIONS(1245), - [anon_sym_u_SQUOTE] = ACTIONS(1245), - [anon_sym_U_SQUOTE] = ACTIONS(1245), - [anon_sym_u8_SQUOTE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_L_DQUOTE] = ACTIONS(1245), - [anon_sym_u_DQUOTE] = ACTIONS(1245), - [anon_sym_U_DQUOTE] = ACTIONS(1245), - [anon_sym_u8_DQUOTE] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [anon_sym_NULL] = ACTIONS(1243), - [anon_sym_nullptr] = ACTIONS(1243), - [sym_comment] = ACTIONS(3), - }, [154] = { - [ts_builtin_sym_end] = ACTIONS(1153), - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1151), - [aux_sym_preproc_def_token1] = ACTIONS(1151), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), - [sym_preproc_directive] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1151), - [anon_sym_typedef] = ACTIONS(1151), - [anon_sym_extern] = ACTIONS(1151), - [anon_sym___attribute__] = ACTIONS(1151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1151), - [anon_sym___cdecl] = ACTIONS(1151), - [anon_sym___clrcall] = ACTIONS(1151), - [anon_sym___stdcall] = ACTIONS(1151), - [anon_sym___fastcall] = ACTIONS(1151), - [anon_sym___thiscall] = ACTIONS(1151), - [anon_sym___vectorcall] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1151), - [anon_sym_unsigned] = ACTIONS(1151), - [anon_sym_long] = ACTIONS(1151), - [anon_sym_short] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_auto] = ACTIONS(1151), - [anon_sym_register] = ACTIONS(1151), - [anon_sym_inline] = ACTIONS(1151), - [anon_sym___inline] = ACTIONS(1151), - [anon_sym___inline__] = ACTIONS(1151), - [anon_sym___forceinline] = ACTIONS(1151), - [anon_sym_thread_local] = ACTIONS(1151), - [anon_sym___thread] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_constexpr] = ACTIONS(1151), - [anon_sym_volatile] = ACTIONS(1151), - [anon_sym_restrict] = ACTIONS(1151), - [anon_sym___restrict__] = ACTIONS(1151), - [anon_sym__Atomic] = ACTIONS(1151), - [anon_sym__Noreturn] = ACTIONS(1151), - [anon_sym_noreturn] = ACTIONS(1151), - [anon_sym_alignas] = ACTIONS(1151), - [anon_sym__Alignas] = ACTIONS(1151), - [sym_primitive_type] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_switch] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_do] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_goto] = ACTIONS(1151), - [anon_sym___try] = ACTIONS(1151), - [anon_sym___leave] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1151), - [anon_sym___alignof__] = ACTIONS(1151), - [anon_sym___alignof] = ACTIONS(1151), - [anon_sym__alignof] = ACTIONS(1151), - [anon_sym_alignof] = ACTIONS(1151), - [anon_sym__Alignof] = ACTIONS(1151), - [anon_sym_offsetof] = ACTIONS(1151), - [anon_sym__Generic] = ACTIONS(1151), - [anon_sym_asm] = ACTIONS(1151), - [anon_sym___asm__] = ACTIONS(1151), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_NULL] = ACTIONS(1151), - [anon_sym_nullptr] = ACTIONS(1151), + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym__Nonnull] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, [155] = { - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym___extension__] = ACTIONS(1159), - [anon_sym_typedef] = ACTIONS(1159), - [anon_sym_extern] = ACTIONS(1159), - [anon_sym___attribute__] = ACTIONS(1159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), - [anon_sym___declspec] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_signed] = ACTIONS(1159), - [anon_sym_unsigned] = ACTIONS(1159), - [anon_sym_long] = ACTIONS(1159), - [anon_sym_short] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_auto] = ACTIONS(1159), - [anon_sym_register] = ACTIONS(1159), - [anon_sym_inline] = ACTIONS(1159), - [anon_sym___inline] = ACTIONS(1159), - [anon_sym___inline__] = ACTIONS(1159), - [anon_sym___forceinline] = ACTIONS(1159), - [anon_sym_thread_local] = ACTIONS(1159), - [anon_sym___thread] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_constexpr] = ACTIONS(1159), - [anon_sym_volatile] = ACTIONS(1159), - [anon_sym_restrict] = ACTIONS(1159), - [anon_sym___restrict__] = ACTIONS(1159), - [anon_sym__Atomic] = ACTIONS(1159), - [anon_sym__Noreturn] = ACTIONS(1159), - [anon_sym_noreturn] = ACTIONS(1159), - [anon_sym_alignas] = ACTIONS(1159), - [anon_sym__Alignas] = ACTIONS(1159), - [sym_primitive_type] = ACTIONS(1159), - [anon_sym_enum] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_union] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_goto] = ACTIONS(1159), - [anon_sym___try] = ACTIONS(1159), - [anon_sym___leave] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_sizeof] = ACTIONS(1159), - [anon_sym___alignof__] = ACTIONS(1159), - [anon_sym___alignof] = ACTIONS(1159), - [anon_sym__alignof] = ACTIONS(1159), - [anon_sym_alignof] = ACTIONS(1159), - [anon_sym__Alignof] = ACTIONS(1159), - [anon_sym_offsetof] = ACTIONS(1159), - [anon_sym__Generic] = ACTIONS(1159), - [anon_sym_asm] = ACTIONS(1159), - [anon_sym___asm__] = ACTIONS(1159), - [sym_number_literal] = ACTIONS(1161), - [anon_sym_L_SQUOTE] = ACTIONS(1161), - [anon_sym_u_SQUOTE] = ACTIONS(1161), - [anon_sym_U_SQUOTE] = ACTIONS(1161), - [anon_sym_u8_SQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [anon_sym_L_DQUOTE] = ACTIONS(1161), - [anon_sym_u_DQUOTE] = ACTIONS(1161), - [anon_sym_U_DQUOTE] = ACTIONS(1161), - [anon_sym_u8_DQUOTE] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym_true] = ACTIONS(1159), - [sym_false] = ACTIONS(1159), - [anon_sym_NULL] = ACTIONS(1159), - [anon_sym_nullptr] = ACTIONS(1159), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym__Nonnull] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, [156] = { - [ts_builtin_sym_end] = ACTIONS(1157), - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_STAR] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym___extension__] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym___attribute__] = ACTIONS(1155), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), - [anon_sym___declspec] = ACTIONS(1155), - [anon_sym___cdecl] = ACTIONS(1155), - [anon_sym___clrcall] = ACTIONS(1155), - [anon_sym___stdcall] = ACTIONS(1155), - [anon_sym___fastcall] = ACTIONS(1155), - [anon_sym___thiscall] = ACTIONS(1155), - [anon_sym___vectorcall] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(1155), - [anon_sym_unsigned] = ACTIONS(1155), - [anon_sym_long] = ACTIONS(1155), - [anon_sym_short] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_auto] = ACTIONS(1155), - [anon_sym_register] = ACTIONS(1155), - [anon_sym_inline] = ACTIONS(1155), - [anon_sym___inline] = ACTIONS(1155), - [anon_sym___inline__] = ACTIONS(1155), - [anon_sym___forceinline] = ACTIONS(1155), - [anon_sym_thread_local] = ACTIONS(1155), - [anon_sym___thread] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_constexpr] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1155), - [anon_sym_restrict] = ACTIONS(1155), - [anon_sym___restrict__] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1155), - [anon_sym__Noreturn] = ACTIONS(1155), - [anon_sym_noreturn] = ACTIONS(1155), - [anon_sym_alignas] = ACTIONS(1155), - [anon_sym__Alignas] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_switch] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_goto] = ACTIONS(1155), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_sizeof] = ACTIONS(1155), - [anon_sym___alignof__] = ACTIONS(1155), - [anon_sym___alignof] = ACTIONS(1155), - [anon_sym__alignof] = ACTIONS(1155), - [anon_sym_alignof] = ACTIONS(1155), - [anon_sym__Alignof] = ACTIONS(1155), - [anon_sym_offsetof] = ACTIONS(1155), - [anon_sym__Generic] = ACTIONS(1155), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym___asm__] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1157), - [anon_sym_L_SQUOTE] = ACTIONS(1157), - [anon_sym_u_SQUOTE] = ACTIONS(1157), - [anon_sym_U_SQUOTE] = ACTIONS(1157), - [anon_sym_u8_SQUOTE] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_L_DQUOTE] = ACTIONS(1157), - [anon_sym_u_DQUOTE] = ACTIONS(1157), - [anon_sym_U_DQUOTE] = ACTIONS(1157), - [anon_sym_u8_DQUOTE] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1157), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [anon_sym_NULL] = ACTIONS(1155), - [anon_sym_nullptr] = ACTIONS(1155), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym__Nonnull] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, [157] = { - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym___extension__] = ACTIONS(1159), - [anon_sym_typedef] = ACTIONS(1159), - [anon_sym_extern] = ACTIONS(1159), - [anon_sym___attribute__] = ACTIONS(1159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), - [anon_sym___declspec] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_signed] = ACTIONS(1159), - [anon_sym_unsigned] = ACTIONS(1159), - [anon_sym_long] = ACTIONS(1159), - [anon_sym_short] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_auto] = ACTIONS(1159), - [anon_sym_register] = ACTIONS(1159), - [anon_sym_inline] = ACTIONS(1159), - [anon_sym___inline] = ACTIONS(1159), - [anon_sym___inline__] = ACTIONS(1159), - [anon_sym___forceinline] = ACTIONS(1159), - [anon_sym_thread_local] = ACTIONS(1159), - [anon_sym___thread] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_constexpr] = ACTIONS(1159), - [anon_sym_volatile] = ACTIONS(1159), - [anon_sym_restrict] = ACTIONS(1159), - [anon_sym___restrict__] = ACTIONS(1159), - [anon_sym__Atomic] = ACTIONS(1159), - [anon_sym__Noreturn] = ACTIONS(1159), - [anon_sym_noreturn] = ACTIONS(1159), - [anon_sym_alignas] = ACTIONS(1159), - [anon_sym__Alignas] = ACTIONS(1159), - [sym_primitive_type] = ACTIONS(1159), - [anon_sym_enum] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_union] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_goto] = ACTIONS(1159), - [anon_sym___try] = ACTIONS(1159), - [anon_sym___leave] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_sizeof] = ACTIONS(1159), - [anon_sym___alignof__] = ACTIONS(1159), - [anon_sym___alignof] = ACTIONS(1159), - [anon_sym__alignof] = ACTIONS(1159), - [anon_sym_alignof] = ACTIONS(1159), - [anon_sym__Alignof] = ACTIONS(1159), - [anon_sym_offsetof] = ACTIONS(1159), - [anon_sym__Generic] = ACTIONS(1159), - [anon_sym_asm] = ACTIONS(1159), - [anon_sym___asm__] = ACTIONS(1159), - [sym_number_literal] = ACTIONS(1161), - [anon_sym_L_SQUOTE] = ACTIONS(1161), - [anon_sym_u_SQUOTE] = ACTIONS(1161), - [anon_sym_U_SQUOTE] = ACTIONS(1161), - [anon_sym_u8_SQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [anon_sym_L_DQUOTE] = ACTIONS(1161), - [anon_sym_u_DQUOTE] = ACTIONS(1161), - [anon_sym_U_DQUOTE] = ACTIONS(1161), - [anon_sym_u8_DQUOTE] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym_true] = ACTIONS(1159), - [sym_false] = ACTIONS(1159), - [anon_sym_NULL] = ACTIONS(1159), - [anon_sym_nullptr] = ACTIONS(1159), - [sym_comment] = ACTIONS(3), - }, - [158] = { - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym___extension__] = ACTIONS(1163), - [anon_sym_typedef] = ACTIONS(1163), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym___attribute__] = ACTIONS(1163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), - [anon_sym___declspec] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_signed] = ACTIONS(1163), - [anon_sym_unsigned] = ACTIONS(1163), - [anon_sym_long] = ACTIONS(1163), - [anon_sym_short] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_auto] = ACTIONS(1163), - [anon_sym_register] = ACTIONS(1163), - [anon_sym_inline] = ACTIONS(1163), - [anon_sym___inline] = ACTIONS(1163), - [anon_sym___inline__] = ACTIONS(1163), - [anon_sym___forceinline] = ACTIONS(1163), - [anon_sym_thread_local] = ACTIONS(1163), - [anon_sym___thread] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_constexpr] = ACTIONS(1163), - [anon_sym_volatile] = ACTIONS(1163), - [anon_sym_restrict] = ACTIONS(1163), - [anon_sym___restrict__] = ACTIONS(1163), - [anon_sym__Atomic] = ACTIONS(1163), - [anon_sym__Noreturn] = ACTIONS(1163), - [anon_sym_noreturn] = ACTIONS(1163), - [anon_sym_alignas] = ACTIONS(1163), - [anon_sym__Alignas] = ACTIONS(1163), - [sym_primitive_type] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1163), - [anon_sym___try] = ACTIONS(1163), - [anon_sym___leave] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1163), - [anon_sym___alignof__] = ACTIONS(1163), - [anon_sym___alignof] = ACTIONS(1163), - [anon_sym__alignof] = ACTIONS(1163), - [anon_sym_alignof] = ACTIONS(1163), - [anon_sym__Alignof] = ACTIONS(1163), - [anon_sym_offsetof] = ACTIONS(1163), - [anon_sym__Generic] = ACTIONS(1163), - [anon_sym_asm] = ACTIONS(1163), - [anon_sym___asm__] = ACTIONS(1163), - [sym_number_literal] = ACTIONS(1165), - [anon_sym_L_SQUOTE] = ACTIONS(1165), - [anon_sym_u_SQUOTE] = ACTIONS(1165), - [anon_sym_U_SQUOTE] = ACTIONS(1165), - [anon_sym_u8_SQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_L_DQUOTE] = ACTIONS(1165), - [anon_sym_u_DQUOTE] = ACTIONS(1165), - [anon_sym_U_DQUOTE] = ACTIONS(1165), - [anon_sym_u8_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [anon_sym_NULL] = ACTIONS(1163), - [anon_sym_nullptr] = ACTIONS(1163), - [sym_comment] = ACTIONS(3), - }, - [159] = { - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym___extension__] = ACTIONS(1163), - [anon_sym_typedef] = ACTIONS(1163), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym___attribute__] = ACTIONS(1163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), - [anon_sym___declspec] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_signed] = ACTIONS(1163), - [anon_sym_unsigned] = ACTIONS(1163), - [anon_sym_long] = ACTIONS(1163), - [anon_sym_short] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_auto] = ACTIONS(1163), - [anon_sym_register] = ACTIONS(1163), - [anon_sym_inline] = ACTIONS(1163), - [anon_sym___inline] = ACTIONS(1163), - [anon_sym___inline__] = ACTIONS(1163), - [anon_sym___forceinline] = ACTIONS(1163), - [anon_sym_thread_local] = ACTIONS(1163), - [anon_sym___thread] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_constexpr] = ACTIONS(1163), - [anon_sym_volatile] = ACTIONS(1163), - [anon_sym_restrict] = ACTIONS(1163), - [anon_sym___restrict__] = ACTIONS(1163), - [anon_sym__Atomic] = ACTIONS(1163), - [anon_sym__Noreturn] = ACTIONS(1163), - [anon_sym_noreturn] = ACTIONS(1163), - [anon_sym_alignas] = ACTIONS(1163), - [anon_sym__Alignas] = ACTIONS(1163), - [sym_primitive_type] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1163), - [anon_sym___try] = ACTIONS(1163), - [anon_sym___leave] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1163), - [anon_sym___alignof__] = ACTIONS(1163), - [anon_sym___alignof] = ACTIONS(1163), - [anon_sym__alignof] = ACTIONS(1163), - [anon_sym_alignof] = ACTIONS(1163), - [anon_sym__Alignof] = ACTIONS(1163), - [anon_sym_offsetof] = ACTIONS(1163), - [anon_sym__Generic] = ACTIONS(1163), - [anon_sym_asm] = ACTIONS(1163), - [anon_sym___asm__] = ACTIONS(1163), - [sym_number_literal] = ACTIONS(1165), - [anon_sym_L_SQUOTE] = ACTIONS(1165), - [anon_sym_u_SQUOTE] = ACTIONS(1165), - [anon_sym_U_SQUOTE] = ACTIONS(1165), - [anon_sym_u8_SQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_L_DQUOTE] = ACTIONS(1165), - [anon_sym_u_DQUOTE] = ACTIONS(1165), - [anon_sym_U_DQUOTE] = ACTIONS(1165), - [anon_sym_u8_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [anon_sym_NULL] = ACTIONS(1163), - [anon_sym_nullptr] = ACTIONS(1163), + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), [sym_comment] = ACTIONS(3), }, - [160] = { - [sym_identifier] = ACTIONS(1167), - [aux_sym_preproc_include_token1] = ACTIONS(1167), - [aux_sym_preproc_def_token1] = ACTIONS(1167), - [aux_sym_preproc_if_token1] = ACTIONS(1167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), - [sym_preproc_directive] = ACTIONS(1167), - [anon_sym_LPAREN2] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1169), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym___extension__] = ACTIONS(1167), - [anon_sym_typedef] = ACTIONS(1167), - [anon_sym_extern] = ACTIONS(1167), - [anon_sym___attribute__] = ACTIONS(1167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), - [anon_sym___declspec] = ACTIONS(1167), - [anon_sym___cdecl] = ACTIONS(1167), - [anon_sym___clrcall] = ACTIONS(1167), - [anon_sym___stdcall] = ACTIONS(1167), - [anon_sym___fastcall] = ACTIONS(1167), - [anon_sym___thiscall] = ACTIONS(1167), - [anon_sym___vectorcall] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_signed] = ACTIONS(1167), - [anon_sym_unsigned] = ACTIONS(1167), - [anon_sym_long] = ACTIONS(1167), - [anon_sym_short] = ACTIONS(1167), - [anon_sym_static] = ACTIONS(1167), - [anon_sym_auto] = ACTIONS(1167), - [anon_sym_register] = ACTIONS(1167), - [anon_sym_inline] = ACTIONS(1167), - [anon_sym___inline] = ACTIONS(1167), - [anon_sym___inline__] = ACTIONS(1167), - [anon_sym___forceinline] = ACTIONS(1167), - [anon_sym_thread_local] = ACTIONS(1167), - [anon_sym___thread] = ACTIONS(1167), - [anon_sym_const] = ACTIONS(1167), - [anon_sym_constexpr] = ACTIONS(1167), - [anon_sym_volatile] = ACTIONS(1167), - [anon_sym_restrict] = ACTIONS(1167), - [anon_sym___restrict__] = ACTIONS(1167), - [anon_sym__Atomic] = ACTIONS(1167), - [anon_sym__Noreturn] = ACTIONS(1167), - [anon_sym_noreturn] = ACTIONS(1167), - [anon_sym_alignas] = ACTIONS(1167), - [anon_sym__Alignas] = ACTIONS(1167), - [sym_primitive_type] = ACTIONS(1167), - [anon_sym_enum] = ACTIONS(1167), - [anon_sym_struct] = ACTIONS(1167), - [anon_sym_union] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_switch] = ACTIONS(1167), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_goto] = ACTIONS(1167), - [anon_sym___try] = ACTIONS(1167), - [anon_sym___leave] = ACTIONS(1167), - [anon_sym_DASH_DASH] = ACTIONS(1169), - [anon_sym_PLUS_PLUS] = ACTIONS(1169), - [anon_sym_sizeof] = ACTIONS(1167), - [anon_sym___alignof__] = ACTIONS(1167), - [anon_sym___alignof] = ACTIONS(1167), - [anon_sym__alignof] = ACTIONS(1167), - [anon_sym_alignof] = ACTIONS(1167), - [anon_sym__Alignof] = ACTIONS(1167), - [anon_sym_offsetof] = ACTIONS(1167), - [anon_sym__Generic] = ACTIONS(1167), - [anon_sym_asm] = ACTIONS(1167), - [anon_sym___asm__] = ACTIONS(1167), - [sym_number_literal] = ACTIONS(1169), - [anon_sym_L_SQUOTE] = ACTIONS(1169), - [anon_sym_u_SQUOTE] = ACTIONS(1169), - [anon_sym_U_SQUOTE] = ACTIONS(1169), - [anon_sym_u8_SQUOTE] = ACTIONS(1169), - [anon_sym_SQUOTE] = ACTIONS(1169), - [anon_sym_L_DQUOTE] = ACTIONS(1169), - [anon_sym_u_DQUOTE] = ACTIONS(1169), - [anon_sym_U_DQUOTE] = ACTIONS(1169), - [anon_sym_u8_DQUOTE] = ACTIONS(1169), - [anon_sym_DQUOTE] = ACTIONS(1169), - [sym_true] = ACTIONS(1167), - [sym_false] = ACTIONS(1167), - [anon_sym_NULL] = ACTIONS(1167), - [anon_sym_nullptr] = ACTIONS(1167), + [158] = { + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym__Nonnull] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [161] = { + [159] = { [ts_builtin_sym_end] = ACTIONS(1173), [sym_identifier] = ACTIONS(1171), [aux_sym_preproc_include_token1] = ACTIONS(1171), @@ -32611,6 +32593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1171), [anon_sym__Noreturn] = ACTIONS(1171), [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym__Nonnull] = ACTIONS(1171), [anon_sym_alignas] = ACTIONS(1171), [anon_sym__Alignas] = ACTIONS(1171), [sym_primitive_type] = ACTIONS(1171), @@ -32660,7 +32643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1171), [sym_comment] = ACTIONS(3), }, - [162] = { + [160] = { + [ts_builtin_sym_end] = ACTIONS(1177), [sym_identifier] = ACTIONS(1175), [aux_sym_preproc_include_token1] = ACTIONS(1175), [aux_sym_preproc_def_token1] = ACTIONS(1175), @@ -32689,7 +32673,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1175), [anon_sym___vectorcall] = ACTIONS(1175), [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), [anon_sym_signed] = ACTIONS(1175), [anon_sym_unsigned] = ACTIONS(1175), [anon_sym_long] = ACTIONS(1175), @@ -32711,6 +32694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1175), [anon_sym__Noreturn] = ACTIONS(1175), [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym__Nonnull] = ACTIONS(1175), [anon_sym_alignas] = ACTIONS(1175), [anon_sym__Alignas] = ACTIONS(1175), [sym_primitive_type] = ACTIONS(1175), @@ -32760,108 +32744,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1175), [sym_comment] = ACTIONS(3), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1243), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym___extension__] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym___attribute__] = ACTIONS(1243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1243), - [anon_sym___cdecl] = ACTIONS(1243), - [anon_sym___clrcall] = ACTIONS(1243), - [anon_sym___stdcall] = ACTIONS(1243), - [anon_sym___fastcall] = ACTIONS(1243), - [anon_sym___thiscall] = ACTIONS(1243), - [anon_sym___vectorcall] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1243), - [anon_sym_unsigned] = ACTIONS(1243), - [anon_sym_long] = ACTIONS(1243), - [anon_sym_short] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_auto] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_inline] = ACTIONS(1243), - [anon_sym___inline] = ACTIONS(1243), - [anon_sym___inline__] = ACTIONS(1243), - [anon_sym___forceinline] = ACTIONS(1243), - [anon_sym_thread_local] = ACTIONS(1243), - [anon_sym___thread] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_constexpr] = ACTIONS(1243), - [anon_sym_volatile] = ACTIONS(1243), - [anon_sym_restrict] = ACTIONS(1243), - [anon_sym___restrict__] = ACTIONS(1243), - [anon_sym__Atomic] = ACTIONS(1243), - [anon_sym__Noreturn] = ACTIONS(1243), - [anon_sym_noreturn] = ACTIONS(1243), - [anon_sym_alignas] = ACTIONS(1243), - [anon_sym__Alignas] = ACTIONS(1243), - [sym_primitive_type] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym___try] = ACTIONS(1243), - [anon_sym___leave] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1243), - [anon_sym___alignof__] = ACTIONS(1243), - [anon_sym___alignof] = ACTIONS(1243), - [anon_sym__alignof] = ACTIONS(1243), - [anon_sym_alignof] = ACTIONS(1243), - [anon_sym__Alignof] = ACTIONS(1243), - [anon_sym_offsetof] = ACTIONS(1243), - [anon_sym__Generic] = ACTIONS(1243), - [anon_sym_asm] = ACTIONS(1243), - [anon_sym___asm__] = ACTIONS(1243), - [sym_number_literal] = ACTIONS(1245), - [anon_sym_L_SQUOTE] = ACTIONS(1245), - [anon_sym_u_SQUOTE] = ACTIONS(1245), - [anon_sym_U_SQUOTE] = ACTIONS(1245), - [anon_sym_u8_SQUOTE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_L_DQUOTE] = ACTIONS(1245), - [anon_sym_u_DQUOTE] = ACTIONS(1245), - [anon_sym_U_DQUOTE] = ACTIONS(1245), - [anon_sym_u8_DQUOTE] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [anon_sym_NULL] = ACTIONS(1243), - [anon_sym_nullptr] = ACTIONS(1243), + [161] = { + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym__Nonnull] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(1249), + [162] = { [sym_identifier] = ACTIONS(1247), [aux_sym_preproc_include_token1] = ACTIONS(1247), [aux_sym_preproc_def_token1] = ACTIONS(1247), @@ -32890,6 +32874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1247), [anon_sym___vectorcall] = ACTIONS(1247), [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), [anon_sym_signed] = ACTIONS(1247), [anon_sym_unsigned] = ACTIONS(1247), [anon_sym_long] = ACTIONS(1247), @@ -32911,6 +32896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1247), [anon_sym__Noreturn] = ACTIONS(1247), [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym__Nonnull] = ACTIONS(1247), [anon_sym_alignas] = ACTIONS(1247), [anon_sym__Alignas] = ACTIONS(1247), [sym_primitive_type] = ACTIONS(1247), @@ -32960,4807 +32946,3239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_identifier] = ACTIONS(1183), - [aux_sym_preproc_include_token1] = ACTIONS(1183), - [aux_sym_preproc_def_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym___extension__] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym___attribute__] = ACTIONS(1183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), - [anon_sym___declspec] = ACTIONS(1183), - [anon_sym___cdecl] = ACTIONS(1183), - [anon_sym___clrcall] = ACTIONS(1183), - [anon_sym___stdcall] = ACTIONS(1183), - [anon_sym___fastcall] = ACTIONS(1183), - [anon_sym___thiscall] = ACTIONS(1183), - [anon_sym___vectorcall] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_inline] = ACTIONS(1183), - [anon_sym___inline] = ACTIONS(1183), - [anon_sym___inline__] = ACTIONS(1183), - [anon_sym___forceinline] = ACTIONS(1183), - [anon_sym_thread_local] = ACTIONS(1183), - [anon_sym___thread] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_constexpr] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym___restrict__] = ACTIONS(1183), - [anon_sym__Atomic] = ACTIONS(1183), - [anon_sym__Noreturn] = ACTIONS(1183), - [anon_sym_noreturn] = ACTIONS(1183), - [anon_sym_alignas] = ACTIONS(1183), - [anon_sym__Alignas] = ACTIONS(1183), - [sym_primitive_type] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym___try] = ACTIONS(1183), - [anon_sym___leave] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym___alignof__] = ACTIONS(1183), - [anon_sym___alignof] = ACTIONS(1183), - [anon_sym__alignof] = ACTIONS(1183), - [anon_sym_alignof] = ACTIONS(1183), - [anon_sym__Alignof] = ACTIONS(1183), - [anon_sym_offsetof] = ACTIONS(1183), - [anon_sym__Generic] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym___asm__] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1185), - [anon_sym_L_SQUOTE] = ACTIONS(1185), - [anon_sym_u_SQUOTE] = ACTIONS(1185), - [anon_sym_U_SQUOTE] = ACTIONS(1185), - [anon_sym_u8_SQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [anon_sym_L_DQUOTE] = ACTIONS(1185), - [anon_sym_u_DQUOTE] = ACTIONS(1185), - [anon_sym_U_DQUOTE] = ACTIONS(1185), - [anon_sym_u8_DQUOTE] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [anon_sym_NULL] = ACTIONS(1183), - [anon_sym_nullptr] = ACTIONS(1183), - [sym_comment] = ACTIONS(3), - }, - [166] = { - [sym_identifier] = ACTIONS(1183), - [aux_sym_preproc_include_token1] = ACTIONS(1183), - [aux_sym_preproc_def_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym___extension__] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym___attribute__] = ACTIONS(1183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), - [anon_sym___declspec] = ACTIONS(1183), - [anon_sym___cdecl] = ACTIONS(1183), - [anon_sym___clrcall] = ACTIONS(1183), - [anon_sym___stdcall] = ACTIONS(1183), - [anon_sym___fastcall] = ACTIONS(1183), - [anon_sym___thiscall] = ACTIONS(1183), - [anon_sym___vectorcall] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_inline] = ACTIONS(1183), - [anon_sym___inline] = ACTIONS(1183), - [anon_sym___inline__] = ACTIONS(1183), - [anon_sym___forceinline] = ACTIONS(1183), - [anon_sym_thread_local] = ACTIONS(1183), - [anon_sym___thread] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_constexpr] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym___restrict__] = ACTIONS(1183), - [anon_sym__Atomic] = ACTIONS(1183), - [anon_sym__Noreturn] = ACTIONS(1183), - [anon_sym_noreturn] = ACTIONS(1183), - [anon_sym_alignas] = ACTIONS(1183), - [anon_sym__Alignas] = ACTIONS(1183), - [sym_primitive_type] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym___try] = ACTIONS(1183), - [anon_sym___leave] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym___alignof__] = ACTIONS(1183), - [anon_sym___alignof] = ACTIONS(1183), - [anon_sym__alignof] = ACTIONS(1183), - [anon_sym_alignof] = ACTIONS(1183), - [anon_sym__Alignof] = ACTIONS(1183), - [anon_sym_offsetof] = ACTIONS(1183), - [anon_sym__Generic] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym___asm__] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1185), - [anon_sym_L_SQUOTE] = ACTIONS(1185), - [anon_sym_u_SQUOTE] = ACTIONS(1185), - [anon_sym_U_SQUOTE] = ACTIONS(1185), - [anon_sym_u8_SQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [anon_sym_L_DQUOTE] = ACTIONS(1185), - [anon_sym_u_DQUOTE] = ACTIONS(1185), - [anon_sym_U_DQUOTE] = ACTIONS(1185), - [anon_sym_u8_DQUOTE] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [anon_sym_NULL] = ACTIONS(1183), - [anon_sym_nullptr] = ACTIONS(1183), + [163] = { + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym__Nonnull] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), [sym_comment] = ACTIONS(3), }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym___extension__] = ACTIONS(1163), - [anon_sym_typedef] = ACTIONS(1163), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym___attribute__] = ACTIONS(1163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), - [anon_sym___declspec] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_signed] = ACTIONS(1163), - [anon_sym_unsigned] = ACTIONS(1163), - [anon_sym_long] = ACTIONS(1163), - [anon_sym_short] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_auto] = ACTIONS(1163), - [anon_sym_register] = ACTIONS(1163), - [anon_sym_inline] = ACTIONS(1163), - [anon_sym___inline] = ACTIONS(1163), - [anon_sym___inline__] = ACTIONS(1163), - [anon_sym___forceinline] = ACTIONS(1163), - [anon_sym_thread_local] = ACTIONS(1163), - [anon_sym___thread] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_constexpr] = ACTIONS(1163), - [anon_sym_volatile] = ACTIONS(1163), - [anon_sym_restrict] = ACTIONS(1163), - [anon_sym___restrict__] = ACTIONS(1163), - [anon_sym__Atomic] = ACTIONS(1163), - [anon_sym__Noreturn] = ACTIONS(1163), - [anon_sym_noreturn] = ACTIONS(1163), - [anon_sym_alignas] = ACTIONS(1163), - [anon_sym__Alignas] = ACTIONS(1163), - [sym_primitive_type] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1163), - [anon_sym___try] = ACTIONS(1163), - [anon_sym___leave] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1163), - [anon_sym___alignof__] = ACTIONS(1163), - [anon_sym___alignof] = ACTIONS(1163), - [anon_sym__alignof] = ACTIONS(1163), - [anon_sym_alignof] = ACTIONS(1163), - [anon_sym__Alignof] = ACTIONS(1163), - [anon_sym_offsetof] = ACTIONS(1163), - [anon_sym__Generic] = ACTIONS(1163), - [anon_sym_asm] = ACTIONS(1163), - [anon_sym___asm__] = ACTIONS(1163), - [sym_number_literal] = ACTIONS(1165), - [anon_sym_L_SQUOTE] = ACTIONS(1165), - [anon_sym_u_SQUOTE] = ACTIONS(1165), - [anon_sym_U_SQUOTE] = ACTIONS(1165), - [anon_sym_u8_SQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_L_DQUOTE] = ACTIONS(1165), - [anon_sym_u_DQUOTE] = ACTIONS(1165), - [anon_sym_U_DQUOTE] = ACTIONS(1165), - [anon_sym_u8_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [anon_sym_NULL] = ACTIONS(1163), - [anon_sym_nullptr] = ACTIONS(1163), + [164] = { + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym__Nonnull] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym___extension__] = ACTIONS(1163), - [anon_sym_typedef] = ACTIONS(1163), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym___attribute__] = ACTIONS(1163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), - [anon_sym___declspec] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_signed] = ACTIONS(1163), - [anon_sym_unsigned] = ACTIONS(1163), - [anon_sym_long] = ACTIONS(1163), - [anon_sym_short] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_auto] = ACTIONS(1163), - [anon_sym_register] = ACTIONS(1163), - [anon_sym_inline] = ACTIONS(1163), - [anon_sym___inline] = ACTIONS(1163), - [anon_sym___inline__] = ACTIONS(1163), - [anon_sym___forceinline] = ACTIONS(1163), - [anon_sym_thread_local] = ACTIONS(1163), - [anon_sym___thread] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_constexpr] = ACTIONS(1163), - [anon_sym_volatile] = ACTIONS(1163), - [anon_sym_restrict] = ACTIONS(1163), - [anon_sym___restrict__] = ACTIONS(1163), - [anon_sym__Atomic] = ACTIONS(1163), - [anon_sym__Noreturn] = ACTIONS(1163), - [anon_sym_noreturn] = ACTIONS(1163), - [anon_sym_alignas] = ACTIONS(1163), - [anon_sym__Alignas] = ACTIONS(1163), - [sym_primitive_type] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1163), - [anon_sym___try] = ACTIONS(1163), - [anon_sym___leave] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1163), - [anon_sym___alignof__] = ACTIONS(1163), - [anon_sym___alignof] = ACTIONS(1163), - [anon_sym__alignof] = ACTIONS(1163), - [anon_sym_alignof] = ACTIONS(1163), - [anon_sym__Alignof] = ACTIONS(1163), - [anon_sym_offsetof] = ACTIONS(1163), - [anon_sym__Generic] = ACTIONS(1163), - [anon_sym_asm] = ACTIONS(1163), - [anon_sym___asm__] = ACTIONS(1163), - [sym_number_literal] = ACTIONS(1165), - [anon_sym_L_SQUOTE] = ACTIONS(1165), - [anon_sym_u_SQUOTE] = ACTIONS(1165), - [anon_sym_U_SQUOTE] = ACTIONS(1165), - [anon_sym_u8_SQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_L_DQUOTE] = ACTIONS(1165), - [anon_sym_u_DQUOTE] = ACTIONS(1165), - [anon_sym_U_DQUOTE] = ACTIONS(1165), - [anon_sym_u8_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [anon_sym_NULL] = ACTIONS(1163), - [anon_sym_nullptr] = ACTIONS(1163), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(1187), - [aux_sym_preproc_include_token1] = ACTIONS(1187), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1187), - [anon_sym_LPAREN2] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym___extension__] = ACTIONS(1187), - [anon_sym_typedef] = ACTIONS(1187), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym___attribute__] = ACTIONS(1187), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), - [anon_sym___declspec] = ACTIONS(1187), - [anon_sym___cdecl] = ACTIONS(1187), - [anon_sym___clrcall] = ACTIONS(1187), - [anon_sym___stdcall] = ACTIONS(1187), - [anon_sym___fastcall] = ACTIONS(1187), - [anon_sym___thiscall] = ACTIONS(1187), - [anon_sym___vectorcall] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_signed] = ACTIONS(1187), - [anon_sym_unsigned] = ACTIONS(1187), - [anon_sym_long] = ACTIONS(1187), - [anon_sym_short] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_auto] = ACTIONS(1187), - [anon_sym_register] = ACTIONS(1187), - [anon_sym_inline] = ACTIONS(1187), - [anon_sym___inline] = ACTIONS(1187), - [anon_sym___inline__] = ACTIONS(1187), - [anon_sym___forceinline] = ACTIONS(1187), - [anon_sym_thread_local] = ACTIONS(1187), - [anon_sym___thread] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_constexpr] = ACTIONS(1187), - [anon_sym_volatile] = ACTIONS(1187), - [anon_sym_restrict] = ACTIONS(1187), - [anon_sym___restrict__] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(1187), - [anon_sym__Noreturn] = ACTIONS(1187), - [anon_sym_noreturn] = ACTIONS(1187), - [anon_sym_alignas] = ACTIONS(1187), - [anon_sym__Alignas] = ACTIONS(1187), - [sym_primitive_type] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_goto] = ACTIONS(1187), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1187), - [anon_sym___alignof__] = ACTIONS(1187), - [anon_sym___alignof] = ACTIONS(1187), - [anon_sym__alignof] = ACTIONS(1187), - [anon_sym_alignof] = ACTIONS(1187), - [anon_sym__Alignof] = ACTIONS(1187), - [anon_sym_offsetof] = ACTIONS(1187), - [anon_sym__Generic] = ACTIONS(1187), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym___asm__] = ACTIONS(1187), - [sym_number_literal] = ACTIONS(1189), - [anon_sym_L_SQUOTE] = ACTIONS(1189), - [anon_sym_u_SQUOTE] = ACTIONS(1189), - [anon_sym_U_SQUOTE] = ACTIONS(1189), - [anon_sym_u8_SQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_L_DQUOTE] = ACTIONS(1189), - [anon_sym_u_DQUOTE] = ACTIONS(1189), - [anon_sym_U_DQUOTE] = ACTIONS(1189), - [anon_sym_u8_DQUOTE] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [anon_sym_NULL] = ACTIONS(1187), - [anon_sym_nullptr] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1187), - [aux_sym_preproc_include_token1] = ACTIONS(1187), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1187), - [anon_sym_LPAREN2] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym___extension__] = ACTIONS(1187), - [anon_sym_typedef] = ACTIONS(1187), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym___attribute__] = ACTIONS(1187), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), - [anon_sym___declspec] = ACTIONS(1187), - [anon_sym___cdecl] = ACTIONS(1187), - [anon_sym___clrcall] = ACTIONS(1187), - [anon_sym___stdcall] = ACTIONS(1187), - [anon_sym___fastcall] = ACTIONS(1187), - [anon_sym___thiscall] = ACTIONS(1187), - [anon_sym___vectorcall] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_signed] = ACTIONS(1187), - [anon_sym_unsigned] = ACTIONS(1187), - [anon_sym_long] = ACTIONS(1187), - [anon_sym_short] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_auto] = ACTIONS(1187), - [anon_sym_register] = ACTIONS(1187), - [anon_sym_inline] = ACTIONS(1187), - [anon_sym___inline] = ACTIONS(1187), - [anon_sym___inline__] = ACTIONS(1187), - [anon_sym___forceinline] = ACTIONS(1187), - [anon_sym_thread_local] = ACTIONS(1187), - [anon_sym___thread] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_constexpr] = ACTIONS(1187), - [anon_sym_volatile] = ACTIONS(1187), - [anon_sym_restrict] = ACTIONS(1187), - [anon_sym___restrict__] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(1187), - [anon_sym__Noreturn] = ACTIONS(1187), - [anon_sym_noreturn] = ACTIONS(1187), - [anon_sym_alignas] = ACTIONS(1187), - [anon_sym__Alignas] = ACTIONS(1187), - [sym_primitive_type] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_goto] = ACTIONS(1187), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1187), - [anon_sym___alignof__] = ACTIONS(1187), - [anon_sym___alignof] = ACTIONS(1187), - [anon_sym__alignof] = ACTIONS(1187), - [anon_sym_alignof] = ACTIONS(1187), - [anon_sym__Alignof] = ACTIONS(1187), - [anon_sym_offsetof] = ACTIONS(1187), - [anon_sym__Generic] = ACTIONS(1187), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym___asm__] = ACTIONS(1187), - [sym_number_literal] = ACTIONS(1189), - [anon_sym_L_SQUOTE] = ACTIONS(1189), - [anon_sym_u_SQUOTE] = ACTIONS(1189), - [anon_sym_U_SQUOTE] = ACTIONS(1189), - [anon_sym_u8_SQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_L_DQUOTE] = ACTIONS(1189), - [anon_sym_u_DQUOTE] = ACTIONS(1189), - [anon_sym_U_DQUOTE] = ACTIONS(1189), - [anon_sym_u8_DQUOTE] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [anon_sym_NULL] = ACTIONS(1187), - [anon_sym_nullptr] = ACTIONS(1187), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_identifier] = ACTIONS(1191), - [aux_sym_preproc_include_token1] = ACTIONS(1191), - [aux_sym_preproc_def_token1] = ACTIONS(1191), - [aux_sym_preproc_if_token1] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), - [sym_preproc_directive] = ACTIONS(1191), - [anon_sym_LPAREN2] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym___extension__] = ACTIONS(1191), - [anon_sym_typedef] = ACTIONS(1191), - [anon_sym_extern] = ACTIONS(1191), - [anon_sym___attribute__] = ACTIONS(1191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), - [anon_sym___declspec] = ACTIONS(1191), - [anon_sym___cdecl] = ACTIONS(1191), - [anon_sym___clrcall] = ACTIONS(1191), - [anon_sym___stdcall] = ACTIONS(1191), - [anon_sym___fastcall] = ACTIONS(1191), - [anon_sym___thiscall] = ACTIONS(1191), - [anon_sym___vectorcall] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_signed] = ACTIONS(1191), - [anon_sym_unsigned] = ACTIONS(1191), - [anon_sym_long] = ACTIONS(1191), - [anon_sym_short] = ACTIONS(1191), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_auto] = ACTIONS(1191), - [anon_sym_register] = ACTIONS(1191), - [anon_sym_inline] = ACTIONS(1191), - [anon_sym___inline] = ACTIONS(1191), - [anon_sym___inline__] = ACTIONS(1191), - [anon_sym___forceinline] = ACTIONS(1191), - [anon_sym_thread_local] = ACTIONS(1191), - [anon_sym___thread] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(1191), - [anon_sym_constexpr] = ACTIONS(1191), - [anon_sym_volatile] = ACTIONS(1191), - [anon_sym_restrict] = ACTIONS(1191), - [anon_sym___restrict__] = ACTIONS(1191), - [anon_sym__Atomic] = ACTIONS(1191), - [anon_sym__Noreturn] = ACTIONS(1191), - [anon_sym_noreturn] = ACTIONS(1191), - [anon_sym_alignas] = ACTIONS(1191), - [anon_sym__Alignas] = ACTIONS(1191), - [sym_primitive_type] = ACTIONS(1191), - [anon_sym_enum] = ACTIONS(1191), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_switch] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(1191), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1191), - [anon_sym_do] = ACTIONS(1191), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1191), - [anon_sym_goto] = ACTIONS(1191), - [anon_sym___try] = ACTIONS(1191), - [anon_sym___leave] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_sizeof] = ACTIONS(1191), - [anon_sym___alignof__] = ACTIONS(1191), - [anon_sym___alignof] = ACTIONS(1191), - [anon_sym__alignof] = ACTIONS(1191), - [anon_sym_alignof] = ACTIONS(1191), - [anon_sym__Alignof] = ACTIONS(1191), - [anon_sym_offsetof] = ACTIONS(1191), - [anon_sym__Generic] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1191), - [anon_sym___asm__] = ACTIONS(1191), - [sym_number_literal] = ACTIONS(1193), - [anon_sym_L_SQUOTE] = ACTIONS(1193), - [anon_sym_u_SQUOTE] = ACTIONS(1193), - [anon_sym_U_SQUOTE] = ACTIONS(1193), - [anon_sym_u8_SQUOTE] = ACTIONS(1193), - [anon_sym_SQUOTE] = ACTIONS(1193), - [anon_sym_L_DQUOTE] = ACTIONS(1193), - [anon_sym_u_DQUOTE] = ACTIONS(1193), - [anon_sym_U_DQUOTE] = ACTIONS(1193), - [anon_sym_u8_DQUOTE] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_true] = ACTIONS(1191), - [sym_false] = ACTIONS(1191), - [anon_sym_NULL] = ACTIONS(1191), - [anon_sym_nullptr] = ACTIONS(1191), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_identifier] = ACTIONS(1195), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), - [sym_preproc_directive] = ACTIONS(1195), - [anon_sym_LPAREN2] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1197), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym___extension__] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1195), - [anon_sym_extern] = ACTIONS(1195), - [anon_sym___attribute__] = ACTIONS(1195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1195), - [anon_sym___cdecl] = ACTIONS(1195), - [anon_sym___clrcall] = ACTIONS(1195), - [anon_sym___stdcall] = ACTIONS(1195), - [anon_sym___fastcall] = ACTIONS(1195), - [anon_sym___thiscall] = ACTIONS(1195), - [anon_sym___vectorcall] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1195), - [anon_sym_unsigned] = ACTIONS(1195), - [anon_sym_long] = ACTIONS(1195), - [anon_sym_short] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_auto] = ACTIONS(1195), - [anon_sym_register] = ACTIONS(1195), - [anon_sym_inline] = ACTIONS(1195), - [anon_sym___inline] = ACTIONS(1195), - [anon_sym___inline__] = ACTIONS(1195), - [anon_sym___forceinline] = ACTIONS(1195), - [anon_sym_thread_local] = ACTIONS(1195), - [anon_sym___thread] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_constexpr] = ACTIONS(1195), - [anon_sym_volatile] = ACTIONS(1195), - [anon_sym_restrict] = ACTIONS(1195), - [anon_sym___restrict__] = ACTIONS(1195), - [anon_sym__Atomic] = ACTIONS(1195), - [anon_sym__Noreturn] = ACTIONS(1195), - [anon_sym_noreturn] = ACTIONS(1195), - [anon_sym_alignas] = ACTIONS(1195), - [anon_sym__Alignas] = ACTIONS(1195), - [sym_primitive_type] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_else] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_goto] = ACTIONS(1195), - [anon_sym___try] = ACTIONS(1195), - [anon_sym___leave] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1197), - [anon_sym_sizeof] = ACTIONS(1195), - [anon_sym___alignof__] = ACTIONS(1195), - [anon_sym___alignof] = ACTIONS(1195), - [anon_sym__alignof] = ACTIONS(1195), - [anon_sym_alignof] = ACTIONS(1195), - [anon_sym__Alignof] = ACTIONS(1195), - [anon_sym_offsetof] = ACTIONS(1195), - [anon_sym__Generic] = ACTIONS(1195), - [anon_sym_asm] = ACTIONS(1195), - [anon_sym___asm__] = ACTIONS(1195), - [sym_number_literal] = ACTIONS(1197), - [anon_sym_L_SQUOTE] = ACTIONS(1197), - [anon_sym_u_SQUOTE] = ACTIONS(1197), - [anon_sym_U_SQUOTE] = ACTIONS(1197), - [anon_sym_u8_SQUOTE] = ACTIONS(1197), - [anon_sym_SQUOTE] = ACTIONS(1197), - [anon_sym_L_DQUOTE] = ACTIONS(1197), - [anon_sym_u_DQUOTE] = ACTIONS(1197), - [anon_sym_U_DQUOTE] = ACTIONS(1197), - [anon_sym_u8_DQUOTE] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_true] = ACTIONS(1195), - [sym_false] = ACTIONS(1195), - [anon_sym_NULL] = ACTIONS(1195), - [anon_sym_nullptr] = ACTIONS(1195), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [ts_builtin_sym_end] = ACTIONS(1201), - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_include_token1] = ACTIONS(1199), - [aux_sym_preproc_def_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), - [sym_preproc_directive] = ACTIONS(1199), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym___extension__] = ACTIONS(1199), - [anon_sym_typedef] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym___attribute__] = ACTIONS(1199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), - [anon_sym___declspec] = ACTIONS(1199), - [anon_sym___cdecl] = ACTIONS(1199), - [anon_sym___clrcall] = ACTIONS(1199), - [anon_sym___stdcall] = ACTIONS(1199), - [anon_sym___fastcall] = ACTIONS(1199), - [anon_sym___thiscall] = ACTIONS(1199), - [anon_sym___vectorcall] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_signed] = ACTIONS(1199), - [anon_sym_unsigned] = ACTIONS(1199), - [anon_sym_long] = ACTIONS(1199), - [anon_sym_short] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_auto] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_inline] = ACTIONS(1199), - [anon_sym___inline] = ACTIONS(1199), - [anon_sym___inline__] = ACTIONS(1199), - [anon_sym___forceinline] = ACTIONS(1199), - [anon_sym_thread_local] = ACTIONS(1199), - [anon_sym___thread] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_constexpr] = ACTIONS(1199), - [anon_sym_volatile] = ACTIONS(1199), - [anon_sym_restrict] = ACTIONS(1199), - [anon_sym___restrict__] = ACTIONS(1199), - [anon_sym__Atomic] = ACTIONS(1199), - [anon_sym__Noreturn] = ACTIONS(1199), - [anon_sym_noreturn] = ACTIONS(1199), - [anon_sym_alignas] = ACTIONS(1199), - [anon_sym__Alignas] = ACTIONS(1199), - [sym_primitive_type] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_else] = ACTIONS(1199), - [anon_sym_switch] = ACTIONS(1199), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_goto] = ACTIONS(1199), - [anon_sym___try] = ACTIONS(1199), - [anon_sym___leave] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1199), - [anon_sym___alignof__] = ACTIONS(1199), - [anon_sym___alignof] = ACTIONS(1199), - [anon_sym__alignof] = ACTIONS(1199), - [anon_sym_alignof] = ACTIONS(1199), - [anon_sym__Alignof] = ACTIONS(1199), - [anon_sym_offsetof] = ACTIONS(1199), - [anon_sym__Generic] = ACTIONS(1199), - [anon_sym_asm] = ACTIONS(1199), - [anon_sym___asm__] = ACTIONS(1199), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1199), - [sym_false] = ACTIONS(1199), - [anon_sym_NULL] = ACTIONS(1199), - [anon_sym_nullptr] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [sym_identifier] = ACTIONS(1203), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), - [sym_preproc_directive] = ACTIONS(1203), - [anon_sym_LPAREN2] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym___extension__] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym___attribute__] = ACTIONS(1203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), - [anon_sym___declspec] = ACTIONS(1203), - [anon_sym___cdecl] = ACTIONS(1203), - [anon_sym___clrcall] = ACTIONS(1203), - [anon_sym___stdcall] = ACTIONS(1203), - [anon_sym___fastcall] = ACTIONS(1203), - [anon_sym___thiscall] = ACTIONS(1203), - [anon_sym___vectorcall] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_signed] = ACTIONS(1203), - [anon_sym_unsigned] = ACTIONS(1203), - [anon_sym_long] = ACTIONS(1203), - [anon_sym_short] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_auto] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_inline] = ACTIONS(1203), - [anon_sym___inline] = ACTIONS(1203), - [anon_sym___inline__] = ACTIONS(1203), - [anon_sym___forceinline] = ACTIONS(1203), - [anon_sym_thread_local] = ACTIONS(1203), - [anon_sym___thread] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_constexpr] = ACTIONS(1203), - [anon_sym_volatile] = ACTIONS(1203), - [anon_sym_restrict] = ACTIONS(1203), - [anon_sym___restrict__] = ACTIONS(1203), - [anon_sym__Atomic] = ACTIONS(1203), - [anon_sym__Noreturn] = ACTIONS(1203), - [anon_sym_noreturn] = ACTIONS(1203), - [anon_sym_alignas] = ACTIONS(1203), - [anon_sym__Alignas] = ACTIONS(1203), - [sym_primitive_type] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_switch] = ACTIONS(1203), - [anon_sym_case] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_goto] = ACTIONS(1203), - [anon_sym___try] = ACTIONS(1203), - [anon_sym___leave] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_sizeof] = ACTIONS(1203), - [anon_sym___alignof__] = ACTIONS(1203), - [anon_sym___alignof] = ACTIONS(1203), - [anon_sym__alignof] = ACTIONS(1203), - [anon_sym_alignof] = ACTIONS(1203), - [anon_sym__Alignof] = ACTIONS(1203), - [anon_sym_offsetof] = ACTIONS(1203), - [anon_sym__Generic] = ACTIONS(1203), - [anon_sym_asm] = ACTIONS(1203), - [anon_sym___asm__] = ACTIONS(1203), - [sym_number_literal] = ACTIONS(1205), - [anon_sym_L_SQUOTE] = ACTIONS(1205), - [anon_sym_u_SQUOTE] = ACTIONS(1205), - [anon_sym_U_SQUOTE] = ACTIONS(1205), - [anon_sym_u8_SQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1205), - [anon_sym_L_DQUOTE] = ACTIONS(1205), - [anon_sym_u_DQUOTE] = ACTIONS(1205), - [anon_sym_U_DQUOTE] = ACTIONS(1205), - [anon_sym_u8_DQUOTE] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [sym_true] = ACTIONS(1203), - [sym_false] = ACTIONS(1203), - [anon_sym_NULL] = ACTIONS(1203), - [anon_sym_nullptr] = ACTIONS(1203), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(1207), - [aux_sym_preproc_include_token1] = ACTIONS(1207), - [aux_sym_preproc_def_token1] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), - [sym_preproc_directive] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym___extension__] = ACTIONS(1207), - [anon_sym_typedef] = ACTIONS(1207), - [anon_sym_extern] = ACTIONS(1207), - [anon_sym___attribute__] = ACTIONS(1207), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), - [anon_sym___declspec] = ACTIONS(1207), - [anon_sym___cdecl] = ACTIONS(1207), - [anon_sym___clrcall] = ACTIONS(1207), - [anon_sym___stdcall] = ACTIONS(1207), - [anon_sym___fastcall] = ACTIONS(1207), - [anon_sym___thiscall] = ACTIONS(1207), - [anon_sym___vectorcall] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_signed] = ACTIONS(1207), - [anon_sym_unsigned] = ACTIONS(1207), - [anon_sym_long] = ACTIONS(1207), - [anon_sym_short] = ACTIONS(1207), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_auto] = ACTIONS(1207), - [anon_sym_register] = ACTIONS(1207), - [anon_sym_inline] = ACTIONS(1207), - [anon_sym___inline] = ACTIONS(1207), - [anon_sym___inline__] = ACTIONS(1207), - [anon_sym___forceinline] = ACTIONS(1207), - [anon_sym_thread_local] = ACTIONS(1207), - [anon_sym___thread] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_constexpr] = ACTIONS(1207), - [anon_sym_volatile] = ACTIONS(1207), - [anon_sym_restrict] = ACTIONS(1207), - [anon_sym___restrict__] = ACTIONS(1207), - [anon_sym__Atomic] = ACTIONS(1207), - [anon_sym__Noreturn] = ACTIONS(1207), - [anon_sym_noreturn] = ACTIONS(1207), - [anon_sym_alignas] = ACTIONS(1207), - [anon_sym__Alignas] = ACTIONS(1207), - [sym_primitive_type] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [anon_sym_struct] = ACTIONS(1207), - [anon_sym_union] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_switch] = ACTIONS(1207), - [anon_sym_case] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_do] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_goto] = ACTIONS(1207), - [anon_sym___try] = ACTIONS(1207), - [anon_sym___leave] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_sizeof] = ACTIONS(1207), - [anon_sym___alignof__] = ACTIONS(1207), - [anon_sym___alignof] = ACTIONS(1207), - [anon_sym__alignof] = ACTIONS(1207), - [anon_sym_alignof] = ACTIONS(1207), - [anon_sym__Alignof] = ACTIONS(1207), - [anon_sym_offsetof] = ACTIONS(1207), - [anon_sym__Generic] = ACTIONS(1207), - [anon_sym_asm] = ACTIONS(1207), - [anon_sym___asm__] = ACTIONS(1207), - [sym_number_literal] = ACTIONS(1209), - [anon_sym_L_SQUOTE] = ACTIONS(1209), - [anon_sym_u_SQUOTE] = ACTIONS(1209), - [anon_sym_U_SQUOTE] = ACTIONS(1209), - [anon_sym_u8_SQUOTE] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_L_DQUOTE] = ACTIONS(1209), - [anon_sym_u_DQUOTE] = ACTIONS(1209), - [anon_sym_U_DQUOTE] = ACTIONS(1209), - [anon_sym_u8_DQUOTE] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [anon_sym_NULL] = ACTIONS(1207), - [anon_sym_nullptr] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [sym_identifier] = ACTIONS(1211), - [aux_sym_preproc_include_token1] = ACTIONS(1211), - [aux_sym_preproc_def_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), - [sym_preproc_directive] = ACTIONS(1211), - [anon_sym_LPAREN2] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym___extension__] = ACTIONS(1211), - [anon_sym_typedef] = ACTIONS(1211), - [anon_sym_extern] = ACTIONS(1211), - [anon_sym___attribute__] = ACTIONS(1211), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), - [anon_sym___declspec] = ACTIONS(1211), - [anon_sym___cdecl] = ACTIONS(1211), - [anon_sym___clrcall] = ACTIONS(1211), - [anon_sym___stdcall] = ACTIONS(1211), - [anon_sym___fastcall] = ACTIONS(1211), - [anon_sym___thiscall] = ACTIONS(1211), - [anon_sym___vectorcall] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_signed] = ACTIONS(1211), - [anon_sym_unsigned] = ACTIONS(1211), - [anon_sym_long] = ACTIONS(1211), - [anon_sym_short] = ACTIONS(1211), - [anon_sym_static] = ACTIONS(1211), - [anon_sym_auto] = ACTIONS(1211), - [anon_sym_register] = ACTIONS(1211), - [anon_sym_inline] = ACTIONS(1211), - [anon_sym___inline] = ACTIONS(1211), - [anon_sym___inline__] = ACTIONS(1211), - [anon_sym___forceinline] = ACTIONS(1211), - [anon_sym_thread_local] = ACTIONS(1211), - [anon_sym___thread] = ACTIONS(1211), - [anon_sym_const] = ACTIONS(1211), - [anon_sym_constexpr] = ACTIONS(1211), - [anon_sym_volatile] = ACTIONS(1211), - [anon_sym_restrict] = ACTIONS(1211), - [anon_sym___restrict__] = ACTIONS(1211), - [anon_sym__Atomic] = ACTIONS(1211), - [anon_sym__Noreturn] = ACTIONS(1211), - [anon_sym_noreturn] = ACTIONS(1211), - [anon_sym_alignas] = ACTIONS(1211), - [anon_sym__Alignas] = ACTIONS(1211), - [sym_primitive_type] = ACTIONS(1211), - [anon_sym_enum] = ACTIONS(1211), - [anon_sym_struct] = ACTIONS(1211), - [anon_sym_union] = ACTIONS(1211), - [anon_sym_if] = ACTIONS(1211), - [anon_sym_else] = ACTIONS(1211), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_case] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1211), - [anon_sym_while] = ACTIONS(1211), - [anon_sym_do] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1211), - [anon_sym_return] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1211), - [anon_sym_continue] = ACTIONS(1211), - [anon_sym_goto] = ACTIONS(1211), - [anon_sym___try] = ACTIONS(1211), - [anon_sym___leave] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_sizeof] = ACTIONS(1211), - [anon_sym___alignof__] = ACTIONS(1211), - [anon_sym___alignof] = ACTIONS(1211), - [anon_sym__alignof] = ACTIONS(1211), - [anon_sym_alignof] = ACTIONS(1211), - [anon_sym__Alignof] = ACTIONS(1211), - [anon_sym_offsetof] = ACTIONS(1211), - [anon_sym__Generic] = ACTIONS(1211), - [anon_sym_asm] = ACTIONS(1211), - [anon_sym___asm__] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1213), - [anon_sym_L_SQUOTE] = ACTIONS(1213), - [anon_sym_u_SQUOTE] = ACTIONS(1213), - [anon_sym_U_SQUOTE] = ACTIONS(1213), - [anon_sym_u8_SQUOTE] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(1213), - [anon_sym_L_DQUOTE] = ACTIONS(1213), - [anon_sym_u_DQUOTE] = ACTIONS(1213), - [anon_sym_U_DQUOTE] = ACTIONS(1213), - [anon_sym_u8_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_NULL] = ACTIONS(1211), - [anon_sym_nullptr] = ACTIONS(1211), - [sym_comment] = ACTIONS(3), - }, - [177] = { - [sym_identifier] = ACTIONS(1215), - [aux_sym_preproc_include_token1] = ACTIONS(1215), - [aux_sym_preproc_def_token1] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), - [sym_preproc_directive] = ACTIONS(1215), - [anon_sym_LPAREN2] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_AMP] = ACTIONS(1217), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym___extension__] = ACTIONS(1215), - [anon_sym_typedef] = ACTIONS(1215), - [anon_sym_extern] = ACTIONS(1215), - [anon_sym___attribute__] = ACTIONS(1215), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), - [anon_sym___declspec] = ACTIONS(1215), - [anon_sym___cdecl] = ACTIONS(1215), - [anon_sym___clrcall] = ACTIONS(1215), - [anon_sym___stdcall] = ACTIONS(1215), - [anon_sym___fastcall] = ACTIONS(1215), - [anon_sym___thiscall] = ACTIONS(1215), - [anon_sym___vectorcall] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_RBRACE] = ACTIONS(1217), - [anon_sym_signed] = ACTIONS(1215), - [anon_sym_unsigned] = ACTIONS(1215), - [anon_sym_long] = ACTIONS(1215), - [anon_sym_short] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_auto] = ACTIONS(1215), - [anon_sym_register] = ACTIONS(1215), - [anon_sym_inline] = ACTIONS(1215), - [anon_sym___inline] = ACTIONS(1215), - [anon_sym___inline__] = ACTIONS(1215), - [anon_sym___forceinline] = ACTIONS(1215), - [anon_sym_thread_local] = ACTIONS(1215), - [anon_sym___thread] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_constexpr] = ACTIONS(1215), - [anon_sym_volatile] = ACTIONS(1215), - [anon_sym_restrict] = ACTIONS(1215), - [anon_sym___restrict__] = ACTIONS(1215), - [anon_sym__Atomic] = ACTIONS(1215), - [anon_sym__Noreturn] = ACTIONS(1215), - [anon_sym_noreturn] = ACTIONS(1215), - [anon_sym_alignas] = ACTIONS(1215), - [anon_sym__Alignas] = ACTIONS(1215), - [sym_primitive_type] = ACTIONS(1215), - [anon_sym_enum] = ACTIONS(1215), - [anon_sym_struct] = ACTIONS(1215), - [anon_sym_union] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_else] = ACTIONS(1215), - [anon_sym_switch] = ACTIONS(1215), - [anon_sym_case] = ACTIONS(1215), - [anon_sym_default] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_do] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_goto] = ACTIONS(1215), - [anon_sym___try] = ACTIONS(1215), - [anon_sym___leave] = ACTIONS(1215), - [anon_sym_DASH_DASH] = ACTIONS(1217), - [anon_sym_PLUS_PLUS] = ACTIONS(1217), - [anon_sym_sizeof] = ACTIONS(1215), - [anon_sym___alignof__] = ACTIONS(1215), - [anon_sym___alignof] = ACTIONS(1215), - [anon_sym__alignof] = ACTIONS(1215), - [anon_sym_alignof] = ACTIONS(1215), - [anon_sym__Alignof] = ACTIONS(1215), - [anon_sym_offsetof] = ACTIONS(1215), - [anon_sym__Generic] = ACTIONS(1215), - [anon_sym_asm] = ACTIONS(1215), - [anon_sym___asm__] = ACTIONS(1215), - [sym_number_literal] = ACTIONS(1217), - [anon_sym_L_SQUOTE] = ACTIONS(1217), - [anon_sym_u_SQUOTE] = ACTIONS(1217), - [anon_sym_U_SQUOTE] = ACTIONS(1217), - [anon_sym_u8_SQUOTE] = ACTIONS(1217), - [anon_sym_SQUOTE] = ACTIONS(1217), - [anon_sym_L_DQUOTE] = ACTIONS(1217), - [anon_sym_u_DQUOTE] = ACTIONS(1217), - [anon_sym_U_DQUOTE] = ACTIONS(1217), - [anon_sym_u8_DQUOTE] = ACTIONS(1217), - [anon_sym_DQUOTE] = ACTIONS(1217), - [sym_true] = ACTIONS(1215), - [sym_false] = ACTIONS(1215), - [anon_sym_NULL] = ACTIONS(1215), - [anon_sym_nullptr] = ACTIONS(1215), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_identifier] = ACTIONS(1219), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), - [sym_preproc_directive] = ACTIONS(1219), - [anon_sym_LPAREN2] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym___attribute__] = ACTIONS(1219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1219), - [anon_sym___cdecl] = ACTIONS(1219), - [anon_sym___clrcall] = ACTIONS(1219), - [anon_sym___stdcall] = ACTIONS(1219), - [anon_sym___fastcall] = ACTIONS(1219), - [anon_sym___thiscall] = ACTIONS(1219), - [anon_sym___vectorcall] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1219), - [anon_sym_unsigned] = ACTIONS(1219), - [anon_sym_long] = ACTIONS(1219), - [anon_sym_short] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_auto] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_inline] = ACTIONS(1219), - [anon_sym___inline] = ACTIONS(1219), - [anon_sym___inline__] = ACTIONS(1219), - [anon_sym___forceinline] = ACTIONS(1219), - [anon_sym_thread_local] = ACTIONS(1219), - [anon_sym___thread] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_constexpr] = ACTIONS(1219), - [anon_sym_volatile] = ACTIONS(1219), - [anon_sym_restrict] = ACTIONS(1219), - [anon_sym___restrict__] = ACTIONS(1219), - [anon_sym__Atomic] = ACTIONS(1219), - [anon_sym__Noreturn] = ACTIONS(1219), - [anon_sym_noreturn] = ACTIONS(1219), - [anon_sym_alignas] = ACTIONS(1219), - [anon_sym__Alignas] = ACTIONS(1219), - [sym_primitive_type] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_union] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_goto] = ACTIONS(1219), - [anon_sym___try] = ACTIONS(1219), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1219), - [anon_sym___alignof__] = ACTIONS(1219), - [anon_sym___alignof] = ACTIONS(1219), - [anon_sym__alignof] = ACTIONS(1219), - [anon_sym_alignof] = ACTIONS(1219), - [anon_sym__Alignof] = ACTIONS(1219), - [anon_sym_offsetof] = ACTIONS(1219), - [anon_sym__Generic] = ACTIONS(1219), - [anon_sym_asm] = ACTIONS(1219), - [anon_sym___asm__] = ACTIONS(1219), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_L_SQUOTE] = ACTIONS(1221), - [anon_sym_u_SQUOTE] = ACTIONS(1221), - [anon_sym_U_SQUOTE] = ACTIONS(1221), - [anon_sym_u8_SQUOTE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_L_DQUOTE] = ACTIONS(1221), - [anon_sym_u_DQUOTE] = ACTIONS(1221), - [anon_sym_U_DQUOTE] = ACTIONS(1221), - [anon_sym_u8_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [anon_sym_NULL] = ACTIONS(1219), - [anon_sym_nullptr] = ACTIONS(1219), - [sym_comment] = ACTIONS(3), - }, - [179] = { - [sym_identifier] = ACTIONS(1219), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), - [sym_preproc_directive] = ACTIONS(1219), - [anon_sym_LPAREN2] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym___attribute__] = ACTIONS(1219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1219), - [anon_sym___cdecl] = ACTIONS(1219), - [anon_sym___clrcall] = ACTIONS(1219), - [anon_sym___stdcall] = ACTIONS(1219), - [anon_sym___fastcall] = ACTIONS(1219), - [anon_sym___thiscall] = ACTIONS(1219), - [anon_sym___vectorcall] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1219), - [anon_sym_unsigned] = ACTIONS(1219), - [anon_sym_long] = ACTIONS(1219), - [anon_sym_short] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_auto] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_inline] = ACTIONS(1219), - [anon_sym___inline] = ACTIONS(1219), - [anon_sym___inline__] = ACTIONS(1219), - [anon_sym___forceinline] = ACTIONS(1219), - [anon_sym_thread_local] = ACTIONS(1219), - [anon_sym___thread] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_constexpr] = ACTIONS(1219), - [anon_sym_volatile] = ACTIONS(1219), - [anon_sym_restrict] = ACTIONS(1219), - [anon_sym___restrict__] = ACTIONS(1219), - [anon_sym__Atomic] = ACTIONS(1219), - [anon_sym__Noreturn] = ACTIONS(1219), - [anon_sym_noreturn] = ACTIONS(1219), - [anon_sym_alignas] = ACTIONS(1219), - [anon_sym__Alignas] = ACTIONS(1219), - [sym_primitive_type] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_union] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_goto] = ACTIONS(1219), - [anon_sym___try] = ACTIONS(1219), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1219), - [anon_sym___alignof__] = ACTIONS(1219), - [anon_sym___alignof] = ACTIONS(1219), - [anon_sym__alignof] = ACTIONS(1219), - [anon_sym_alignof] = ACTIONS(1219), - [anon_sym__Alignof] = ACTIONS(1219), - [anon_sym_offsetof] = ACTIONS(1219), - [anon_sym__Generic] = ACTIONS(1219), - [anon_sym_asm] = ACTIONS(1219), - [anon_sym___asm__] = ACTIONS(1219), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_L_SQUOTE] = ACTIONS(1221), - [anon_sym_u_SQUOTE] = ACTIONS(1221), - [anon_sym_U_SQUOTE] = ACTIONS(1221), - [anon_sym_u8_SQUOTE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_L_DQUOTE] = ACTIONS(1221), - [anon_sym_u_DQUOTE] = ACTIONS(1221), - [anon_sym_U_DQUOTE] = ACTIONS(1221), - [anon_sym_u8_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [anon_sym_NULL] = ACTIONS(1219), - [anon_sym_nullptr] = ACTIONS(1219), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_identifier] = ACTIONS(1227), - [aux_sym_preproc_include_token1] = ACTIONS(1227), - [aux_sym_preproc_def_token1] = ACTIONS(1227), - [aux_sym_preproc_if_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), - [sym_preproc_directive] = ACTIONS(1227), - [anon_sym_LPAREN2] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym___extension__] = ACTIONS(1227), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym___attribute__] = ACTIONS(1227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), - [anon_sym___declspec] = ACTIONS(1227), - [anon_sym___cdecl] = ACTIONS(1227), - [anon_sym___clrcall] = ACTIONS(1227), - [anon_sym___stdcall] = ACTIONS(1227), - [anon_sym___fastcall] = ACTIONS(1227), - [anon_sym___thiscall] = ACTIONS(1227), - [anon_sym___vectorcall] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_signed] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [anon_sym___inline] = ACTIONS(1227), - [anon_sym___inline__] = ACTIONS(1227), - [anon_sym___forceinline] = ACTIONS(1227), - [anon_sym_thread_local] = ACTIONS(1227), - [anon_sym___thread] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_constexpr] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym___restrict__] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym__Noreturn] = ACTIONS(1227), - [anon_sym_noreturn] = ACTIONS(1227), - [anon_sym_alignas] = ACTIONS(1227), - [anon_sym__Alignas] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym___try] = ACTIONS(1227), - [anon_sym___leave] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1229), - [anon_sym_sizeof] = ACTIONS(1227), - [anon_sym___alignof__] = ACTIONS(1227), - [anon_sym___alignof] = ACTIONS(1227), - [anon_sym__alignof] = ACTIONS(1227), - [anon_sym_alignof] = ACTIONS(1227), - [anon_sym__Alignof] = ACTIONS(1227), - [anon_sym_offsetof] = ACTIONS(1227), - [anon_sym__Generic] = ACTIONS(1227), - [anon_sym_asm] = ACTIONS(1227), - [anon_sym___asm__] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1229), - [anon_sym_L_SQUOTE] = ACTIONS(1229), - [anon_sym_u_SQUOTE] = ACTIONS(1229), - [anon_sym_U_SQUOTE] = ACTIONS(1229), - [anon_sym_u8_SQUOTE] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1229), - [anon_sym_L_DQUOTE] = ACTIONS(1229), - [anon_sym_u_DQUOTE] = ACTIONS(1229), - [anon_sym_U_DQUOTE] = ACTIONS(1229), - [anon_sym_u8_DQUOTE] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [anon_sym_NULL] = ACTIONS(1227), - [anon_sym_nullptr] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1231), - [aux_sym_preproc_include_token1] = ACTIONS(1231), - [aux_sym_preproc_def_token1] = ACTIONS(1231), - [aux_sym_preproc_if_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), - [sym_preproc_directive] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym___extension__] = ACTIONS(1231), - [anon_sym_typedef] = ACTIONS(1231), - [anon_sym_extern] = ACTIONS(1231), - [anon_sym___attribute__] = ACTIONS(1231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), - [anon_sym___declspec] = ACTIONS(1231), - [anon_sym___cdecl] = ACTIONS(1231), - [anon_sym___clrcall] = ACTIONS(1231), - [anon_sym___stdcall] = ACTIONS(1231), - [anon_sym___fastcall] = ACTIONS(1231), - [anon_sym___thiscall] = ACTIONS(1231), - [anon_sym___vectorcall] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_signed] = ACTIONS(1231), - [anon_sym_unsigned] = ACTIONS(1231), - [anon_sym_long] = ACTIONS(1231), - [anon_sym_short] = ACTIONS(1231), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_auto] = ACTIONS(1231), - [anon_sym_register] = ACTIONS(1231), - [anon_sym_inline] = ACTIONS(1231), - [anon_sym___inline] = ACTIONS(1231), - [anon_sym___inline__] = ACTIONS(1231), - [anon_sym___forceinline] = ACTIONS(1231), - [anon_sym_thread_local] = ACTIONS(1231), - [anon_sym___thread] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_constexpr] = ACTIONS(1231), - [anon_sym_volatile] = ACTIONS(1231), - [anon_sym_restrict] = ACTIONS(1231), - [anon_sym___restrict__] = ACTIONS(1231), - [anon_sym__Atomic] = ACTIONS(1231), - [anon_sym__Noreturn] = ACTIONS(1231), - [anon_sym_noreturn] = ACTIONS(1231), - [anon_sym_alignas] = ACTIONS(1231), - [anon_sym__Alignas] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_union] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_do] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_goto] = ACTIONS(1231), - [anon_sym___try] = ACTIONS(1231), - [anon_sym___leave] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_sizeof] = ACTIONS(1231), - [anon_sym___alignof__] = ACTIONS(1231), - [anon_sym___alignof] = ACTIONS(1231), - [anon_sym__alignof] = ACTIONS(1231), - [anon_sym_alignof] = ACTIONS(1231), - [anon_sym__Alignof] = ACTIONS(1231), - [anon_sym_offsetof] = ACTIONS(1231), - [anon_sym__Generic] = ACTIONS(1231), - [anon_sym_asm] = ACTIONS(1231), - [anon_sym___asm__] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(1233), - [anon_sym_L_SQUOTE] = ACTIONS(1233), - [anon_sym_u_SQUOTE] = ACTIONS(1233), - [anon_sym_U_SQUOTE] = ACTIONS(1233), - [anon_sym_u8_SQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [anon_sym_L_DQUOTE] = ACTIONS(1233), - [anon_sym_u_DQUOTE] = ACTIONS(1233), - [anon_sym_U_DQUOTE] = ACTIONS(1233), - [anon_sym_u8_DQUOTE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_true] = ACTIONS(1231), - [sym_false] = ACTIONS(1231), - [anon_sym_NULL] = ACTIONS(1231), - [anon_sym_nullptr] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [sym_identifier] = ACTIONS(1235), - [aux_sym_preproc_include_token1] = ACTIONS(1235), - [aux_sym_preproc_def_token1] = ACTIONS(1235), - [aux_sym_preproc_if_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), - [sym_preproc_directive] = ACTIONS(1235), - [anon_sym_LPAREN2] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym___extension__] = ACTIONS(1235), - [anon_sym_typedef] = ACTIONS(1235), - [anon_sym_extern] = ACTIONS(1235), - [anon_sym___attribute__] = ACTIONS(1235), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), - [anon_sym___declspec] = ACTIONS(1235), - [anon_sym___cdecl] = ACTIONS(1235), - [anon_sym___clrcall] = ACTIONS(1235), - [anon_sym___stdcall] = ACTIONS(1235), - [anon_sym___fastcall] = ACTIONS(1235), - [anon_sym___thiscall] = ACTIONS(1235), - [anon_sym___vectorcall] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_signed] = ACTIONS(1235), - [anon_sym_unsigned] = ACTIONS(1235), - [anon_sym_long] = ACTIONS(1235), - [anon_sym_short] = ACTIONS(1235), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_auto] = ACTIONS(1235), - [anon_sym_register] = ACTIONS(1235), - [anon_sym_inline] = ACTIONS(1235), - [anon_sym___inline] = ACTIONS(1235), - [anon_sym___inline__] = ACTIONS(1235), - [anon_sym___forceinline] = ACTIONS(1235), - [anon_sym_thread_local] = ACTIONS(1235), - [anon_sym___thread] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_constexpr] = ACTIONS(1235), - [anon_sym_volatile] = ACTIONS(1235), - [anon_sym_restrict] = ACTIONS(1235), - [anon_sym___restrict__] = ACTIONS(1235), - [anon_sym__Atomic] = ACTIONS(1235), - [anon_sym__Noreturn] = ACTIONS(1235), - [anon_sym_noreturn] = ACTIONS(1235), - [anon_sym_alignas] = ACTIONS(1235), - [anon_sym__Alignas] = ACTIONS(1235), - [sym_primitive_type] = ACTIONS(1235), - [anon_sym_enum] = ACTIONS(1235), - [anon_sym_struct] = ACTIONS(1235), - [anon_sym_union] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_goto] = ACTIONS(1235), - [anon_sym___try] = ACTIONS(1235), - [anon_sym___leave] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_sizeof] = ACTIONS(1235), - [anon_sym___alignof__] = ACTIONS(1235), - [anon_sym___alignof] = ACTIONS(1235), - [anon_sym__alignof] = ACTIONS(1235), - [anon_sym_alignof] = ACTIONS(1235), - [anon_sym__Alignof] = ACTIONS(1235), - [anon_sym_offsetof] = ACTIONS(1235), - [anon_sym__Generic] = ACTIONS(1235), - [anon_sym_asm] = ACTIONS(1235), - [anon_sym___asm__] = ACTIONS(1235), - [sym_number_literal] = ACTIONS(1237), - [anon_sym_L_SQUOTE] = ACTIONS(1237), - [anon_sym_u_SQUOTE] = ACTIONS(1237), - [anon_sym_U_SQUOTE] = ACTIONS(1237), - [anon_sym_u8_SQUOTE] = ACTIONS(1237), - [anon_sym_SQUOTE] = ACTIONS(1237), - [anon_sym_L_DQUOTE] = ACTIONS(1237), - [anon_sym_u_DQUOTE] = ACTIONS(1237), - [anon_sym_U_DQUOTE] = ACTIONS(1237), - [anon_sym_u8_DQUOTE] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_true] = ACTIONS(1235), - [sym_false] = ACTIONS(1235), - [anon_sym_NULL] = ACTIONS(1235), - [anon_sym_nullptr] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [sym_identifier] = ACTIONS(1127), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [anon_sym_LPAREN2] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym___extension__] = ACTIONS(1127), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym___attribute__] = ACTIONS(1127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), - [anon_sym___declspec] = ACTIONS(1127), - [anon_sym___cdecl] = ACTIONS(1127), - [anon_sym___clrcall] = ACTIONS(1127), - [anon_sym___stdcall] = ACTIONS(1127), - [anon_sym___fastcall] = ACTIONS(1127), - [anon_sym___thiscall] = ACTIONS(1127), - [anon_sym___vectorcall] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_RBRACE] = ACTIONS(1129), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_long] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_register] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym___inline] = ACTIONS(1127), - [anon_sym___inline__] = ACTIONS(1127), - [anon_sym___forceinline] = ACTIONS(1127), - [anon_sym_thread_local] = ACTIONS(1127), - [anon_sym___thread] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_constexpr] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym___restrict__] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [anon_sym__Noreturn] = ACTIONS(1127), - [anon_sym_noreturn] = ACTIONS(1127), - [anon_sym_alignas] = ACTIONS(1127), - [anon_sym__Alignas] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [anon_sym___try] = ACTIONS(1127), - [anon_sym___leave] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym___alignof__] = ACTIONS(1127), - [anon_sym___alignof] = ACTIONS(1127), - [anon_sym__alignof] = ACTIONS(1127), - [anon_sym_alignof] = ACTIONS(1127), - [anon_sym__Alignof] = ACTIONS(1127), - [anon_sym_offsetof] = ACTIONS(1127), - [anon_sym__Generic] = ACTIONS(1127), - [anon_sym_asm] = ACTIONS(1127), - [anon_sym___asm__] = ACTIONS(1127), - [sym_number_literal] = ACTIONS(1129), - [anon_sym_L_SQUOTE] = ACTIONS(1129), - [anon_sym_u_SQUOTE] = ACTIONS(1129), - [anon_sym_U_SQUOTE] = ACTIONS(1129), - [anon_sym_u8_SQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_L_DQUOTE] = ACTIONS(1129), - [anon_sym_u_DQUOTE] = ACTIONS(1129), - [anon_sym_U_DQUOTE] = ACTIONS(1129), - [anon_sym_u8_DQUOTE] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_NULL] = ACTIONS(1127), - [anon_sym_nullptr] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [sym_identifier] = ACTIONS(1179), - [aux_sym_preproc_include_token1] = ACTIONS(1179), - [aux_sym_preproc_def_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token2] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym___extension__] = ACTIONS(1179), - [anon_sym_typedef] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym___attribute__] = ACTIONS(1179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym___declspec] = ACTIONS(1179), - [anon_sym___cdecl] = ACTIONS(1179), - [anon_sym___clrcall] = ACTIONS(1179), - [anon_sym___stdcall] = ACTIONS(1179), - [anon_sym___fastcall] = ACTIONS(1179), - [anon_sym___thiscall] = ACTIONS(1179), - [anon_sym___vectorcall] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_signed] = ACTIONS(1179), - [anon_sym_unsigned] = ACTIONS(1179), - [anon_sym_long] = ACTIONS(1179), - [anon_sym_short] = ACTIONS(1179), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_auto] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_inline] = ACTIONS(1179), - [anon_sym___inline] = ACTIONS(1179), - [anon_sym___inline__] = ACTIONS(1179), - [anon_sym___forceinline] = ACTIONS(1179), - [anon_sym_thread_local] = ACTIONS(1179), - [anon_sym___thread] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_constexpr] = ACTIONS(1179), - [anon_sym_volatile] = ACTIONS(1179), - [anon_sym_restrict] = ACTIONS(1179), - [anon_sym___restrict__] = ACTIONS(1179), - [anon_sym__Atomic] = ACTIONS(1179), - [anon_sym__Noreturn] = ACTIONS(1179), - [anon_sym_noreturn] = ACTIONS(1179), - [anon_sym_alignas] = ACTIONS(1179), - [anon_sym__Alignas] = ACTIONS(1179), - [sym_primitive_type] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_goto] = ACTIONS(1179), - [anon_sym___try] = ACTIONS(1179), - [anon_sym___leave] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_sizeof] = ACTIONS(1179), - [anon_sym___alignof__] = ACTIONS(1179), - [anon_sym___alignof] = ACTIONS(1179), - [anon_sym__alignof] = ACTIONS(1179), - [anon_sym_alignof] = ACTIONS(1179), - [anon_sym__Alignof] = ACTIONS(1179), - [anon_sym_offsetof] = ACTIONS(1179), - [anon_sym__Generic] = ACTIONS(1179), - [anon_sym_asm] = ACTIONS(1179), - [anon_sym___asm__] = ACTIONS(1179), - [sym_number_literal] = ACTIONS(1181), - [anon_sym_L_SQUOTE] = ACTIONS(1181), - [anon_sym_u_SQUOTE] = ACTIONS(1181), - [anon_sym_U_SQUOTE] = ACTIONS(1181), - [anon_sym_u8_SQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [anon_sym_L_DQUOTE] = ACTIONS(1181), - [anon_sym_u_DQUOTE] = ACTIONS(1181), - [anon_sym_U_DQUOTE] = ACTIONS(1181), - [anon_sym_u8_DQUOTE] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym_true] = ACTIONS(1179), - [sym_false] = ACTIONS(1179), - [anon_sym_NULL] = ACTIONS(1179), - [anon_sym_nullptr] = ACTIONS(1179), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token2] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_identifier] = ACTIONS(1223), - [aux_sym_preproc_include_token1] = ACTIONS(1223), - [aux_sym_preproc_def_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token2] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), - [sym_preproc_directive] = ACTIONS(1223), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym___extension__] = ACTIONS(1223), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym___attribute__] = ACTIONS(1223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), - [anon_sym___declspec] = ACTIONS(1223), - [anon_sym___cdecl] = ACTIONS(1223), - [anon_sym___clrcall] = ACTIONS(1223), - [anon_sym___stdcall] = ACTIONS(1223), - [anon_sym___fastcall] = ACTIONS(1223), - [anon_sym___thiscall] = ACTIONS(1223), - [anon_sym___vectorcall] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [anon_sym___inline] = ACTIONS(1223), - [anon_sym___inline__] = ACTIONS(1223), - [anon_sym___forceinline] = ACTIONS(1223), - [anon_sym_thread_local] = ACTIONS(1223), - [anon_sym___thread] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_constexpr] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym___restrict__] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym__Noreturn] = ACTIONS(1223), - [anon_sym_noreturn] = ACTIONS(1223), - [anon_sym_alignas] = ACTIONS(1223), - [anon_sym__Alignas] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym___try] = ACTIONS(1223), - [anon_sym___leave] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1223), - [anon_sym___alignof__] = ACTIONS(1223), - [anon_sym___alignof] = ACTIONS(1223), - [anon_sym__alignof] = ACTIONS(1223), - [anon_sym_alignof] = ACTIONS(1223), - [anon_sym__Alignof] = ACTIONS(1223), - [anon_sym_offsetof] = ACTIONS(1223), - [anon_sym__Generic] = ACTIONS(1223), - [anon_sym_asm] = ACTIONS(1223), - [anon_sym___asm__] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_L_SQUOTE] = ACTIONS(1225), - [anon_sym_u_SQUOTE] = ACTIONS(1225), - [anon_sym_U_SQUOTE] = ACTIONS(1225), - [anon_sym_u8_SQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [anon_sym_NULL] = ACTIONS(1223), - [anon_sym_nullptr] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - }, - [187] = { - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token2] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [anon_sym_case] = ACTIONS(1239), - [anon_sym_default] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_goto] = ACTIONS(1239), - [anon_sym___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [sym_identifier] = ACTIONS(1243), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token2] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), - [sym_preproc_directive] = ACTIONS(1243), - [anon_sym_LPAREN2] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_TILDE] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_PLUS] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym___extension__] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1243), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym___attribute__] = ACTIONS(1243), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1243), - [anon_sym___cdecl] = ACTIONS(1243), - [anon_sym___clrcall] = ACTIONS(1243), - [anon_sym___stdcall] = ACTIONS(1243), - [anon_sym___fastcall] = ACTIONS(1243), - [anon_sym___thiscall] = ACTIONS(1243), - [anon_sym___vectorcall] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1243), - [anon_sym_unsigned] = ACTIONS(1243), - [anon_sym_long] = ACTIONS(1243), - [anon_sym_short] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_auto] = ACTIONS(1243), - [anon_sym_register] = ACTIONS(1243), - [anon_sym_inline] = ACTIONS(1243), - [anon_sym___inline] = ACTIONS(1243), - [anon_sym___inline__] = ACTIONS(1243), - [anon_sym___forceinline] = ACTIONS(1243), - [anon_sym_thread_local] = ACTIONS(1243), - [anon_sym___thread] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_constexpr] = ACTIONS(1243), - [anon_sym_volatile] = ACTIONS(1243), - [anon_sym_restrict] = ACTIONS(1243), - [anon_sym___restrict__] = ACTIONS(1243), - [anon_sym__Atomic] = ACTIONS(1243), - [anon_sym__Noreturn] = ACTIONS(1243), - [anon_sym_noreturn] = ACTIONS(1243), - [anon_sym_alignas] = ACTIONS(1243), - [anon_sym__Alignas] = ACTIONS(1243), - [sym_primitive_type] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_goto] = ACTIONS(1243), - [anon_sym___try] = ACTIONS(1243), - [anon_sym___leave] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1243), - [anon_sym___alignof__] = ACTIONS(1243), - [anon_sym___alignof] = ACTIONS(1243), - [anon_sym__alignof] = ACTIONS(1243), - [anon_sym_alignof] = ACTIONS(1243), - [anon_sym__Alignof] = ACTIONS(1243), - [anon_sym_offsetof] = ACTIONS(1243), - [anon_sym__Generic] = ACTIONS(1243), - [anon_sym_asm] = ACTIONS(1243), - [anon_sym___asm__] = ACTIONS(1243), - [sym_number_literal] = ACTIONS(1245), - [anon_sym_L_SQUOTE] = ACTIONS(1245), - [anon_sym_u_SQUOTE] = ACTIONS(1245), - [anon_sym_U_SQUOTE] = ACTIONS(1245), - [anon_sym_u8_SQUOTE] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1245), - [anon_sym_L_DQUOTE] = ACTIONS(1245), - [anon_sym_u_DQUOTE] = ACTIONS(1245), - [anon_sym_U_DQUOTE] = ACTIONS(1245), - [anon_sym_u8_DQUOTE] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym_true] = ACTIONS(1243), - [sym_false] = ACTIONS(1243), - [anon_sym_NULL] = ACTIONS(1243), - [anon_sym_nullptr] = ACTIONS(1243), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [sym_identifier] = ACTIONS(1247), - [aux_sym_preproc_include_token1] = ACTIONS(1247), - [aux_sym_preproc_def_token1] = ACTIONS(1247), - [aux_sym_preproc_if_token1] = ACTIONS(1247), - [aux_sym_preproc_if_token2] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), - [sym_preproc_directive] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym___extension__] = ACTIONS(1247), - [anon_sym_typedef] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym___attribute__] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), - [anon_sym___declspec] = ACTIONS(1247), - [anon_sym___cdecl] = ACTIONS(1247), - [anon_sym___clrcall] = ACTIONS(1247), - [anon_sym___stdcall] = ACTIONS(1247), - [anon_sym___fastcall] = ACTIONS(1247), - [anon_sym___thiscall] = ACTIONS(1247), - [anon_sym___vectorcall] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_long] = ACTIONS(1247), - [anon_sym_short] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_auto] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1247), - [anon_sym___inline] = ACTIONS(1247), - [anon_sym___inline__] = ACTIONS(1247), - [anon_sym___forceinline] = ACTIONS(1247), - [anon_sym_thread_local] = ACTIONS(1247), - [anon_sym___thread] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_constexpr] = ACTIONS(1247), - [anon_sym_volatile] = ACTIONS(1247), - [anon_sym_restrict] = ACTIONS(1247), - [anon_sym___restrict__] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1247), - [anon_sym__Noreturn] = ACTIONS(1247), - [anon_sym_noreturn] = ACTIONS(1247), - [anon_sym_alignas] = ACTIONS(1247), - [anon_sym__Alignas] = ACTIONS(1247), - [sym_primitive_type] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_switch] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_goto] = ACTIONS(1247), - [anon_sym___try] = ACTIONS(1247), - [anon_sym___leave] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1247), - [anon_sym___alignof__] = ACTIONS(1247), - [anon_sym___alignof] = ACTIONS(1247), - [anon_sym__alignof] = ACTIONS(1247), - [anon_sym_alignof] = ACTIONS(1247), - [anon_sym__Alignof] = ACTIONS(1247), - [anon_sym_offsetof] = ACTIONS(1247), - [anon_sym__Generic] = ACTIONS(1247), - [anon_sym_asm] = ACTIONS(1247), - [anon_sym___asm__] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1249), - [anon_sym_L_SQUOTE] = ACTIONS(1249), - [anon_sym_u_SQUOTE] = ACTIONS(1249), - [anon_sym_U_SQUOTE] = ACTIONS(1249), - [anon_sym_u8_SQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [anon_sym_L_DQUOTE] = ACTIONS(1249), - [anon_sym_u_DQUOTE] = ACTIONS(1249), - [anon_sym_U_DQUOTE] = ACTIONS(1249), - [anon_sym_u8_DQUOTE] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_true] = ACTIONS(1247), - [sym_false] = ACTIONS(1247), - [anon_sym_NULL] = ACTIONS(1247), - [anon_sym_nullptr] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [sym_identifier] = ACTIONS(1127), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token2] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [anon_sym_LPAREN2] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym___extension__] = ACTIONS(1127), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym___attribute__] = ACTIONS(1127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), - [anon_sym___declspec] = ACTIONS(1127), - [anon_sym___cdecl] = ACTIONS(1127), - [anon_sym___clrcall] = ACTIONS(1127), - [anon_sym___stdcall] = ACTIONS(1127), - [anon_sym___fastcall] = ACTIONS(1127), - [anon_sym___thiscall] = ACTIONS(1127), - [anon_sym___vectorcall] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_long] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_register] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym___inline] = ACTIONS(1127), - [anon_sym___inline__] = ACTIONS(1127), - [anon_sym___forceinline] = ACTIONS(1127), - [anon_sym_thread_local] = ACTIONS(1127), - [anon_sym___thread] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_constexpr] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym___restrict__] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [anon_sym__Noreturn] = ACTIONS(1127), - [anon_sym_noreturn] = ACTIONS(1127), - [anon_sym_alignas] = ACTIONS(1127), - [anon_sym__Alignas] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [anon_sym___try] = ACTIONS(1127), - [anon_sym___leave] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym___alignof__] = ACTIONS(1127), - [anon_sym___alignof] = ACTIONS(1127), - [anon_sym__alignof] = ACTIONS(1127), - [anon_sym_alignof] = ACTIONS(1127), - [anon_sym__Alignof] = ACTIONS(1127), - [anon_sym_offsetof] = ACTIONS(1127), - [anon_sym__Generic] = ACTIONS(1127), - [anon_sym_asm] = ACTIONS(1127), - [anon_sym___asm__] = ACTIONS(1127), - [sym_number_literal] = ACTIONS(1129), - [anon_sym_L_SQUOTE] = ACTIONS(1129), - [anon_sym_u_SQUOTE] = ACTIONS(1129), - [anon_sym_U_SQUOTE] = ACTIONS(1129), - [anon_sym_u8_SQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_L_DQUOTE] = ACTIONS(1129), - [anon_sym_u_DQUOTE] = ACTIONS(1129), - [anon_sym_U_DQUOTE] = ACTIONS(1129), - [anon_sym_u8_DQUOTE] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_NULL] = ACTIONS(1127), - [anon_sym_nullptr] = ACTIONS(1127), - [sym_comment] = ACTIONS(3), - }, - [191] = { - [sym_identifier] = ACTIONS(1131), - [aux_sym_preproc_include_token1] = ACTIONS(1131), - [aux_sym_preproc_def_token1] = ACTIONS(1131), - [aux_sym_preproc_if_token1] = ACTIONS(1131), - [aux_sym_preproc_if_token2] = ACTIONS(1131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), - [sym_preproc_directive] = ACTIONS(1131), - [anon_sym_LPAREN2] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym___extension__] = ACTIONS(1131), - [anon_sym_typedef] = ACTIONS(1131), - [anon_sym_extern] = ACTIONS(1131), - [anon_sym___attribute__] = ACTIONS(1131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), - [anon_sym___declspec] = ACTIONS(1131), - [anon_sym___cdecl] = ACTIONS(1131), - [anon_sym___clrcall] = ACTIONS(1131), - [anon_sym___stdcall] = ACTIONS(1131), - [anon_sym___fastcall] = ACTIONS(1131), - [anon_sym___thiscall] = ACTIONS(1131), - [anon_sym___vectorcall] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_signed] = ACTIONS(1131), - [anon_sym_unsigned] = ACTIONS(1131), - [anon_sym_long] = ACTIONS(1131), - [anon_sym_short] = ACTIONS(1131), - [anon_sym_static] = ACTIONS(1131), - [anon_sym_auto] = ACTIONS(1131), - [anon_sym_register] = ACTIONS(1131), - [anon_sym_inline] = ACTIONS(1131), - [anon_sym___inline] = ACTIONS(1131), - [anon_sym___inline__] = ACTIONS(1131), - [anon_sym___forceinline] = ACTIONS(1131), - [anon_sym_thread_local] = ACTIONS(1131), - [anon_sym___thread] = ACTIONS(1131), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_constexpr] = ACTIONS(1131), - [anon_sym_volatile] = ACTIONS(1131), - [anon_sym_restrict] = ACTIONS(1131), - [anon_sym___restrict__] = ACTIONS(1131), - [anon_sym__Atomic] = ACTIONS(1131), - [anon_sym__Noreturn] = ACTIONS(1131), - [anon_sym_noreturn] = ACTIONS(1131), - [anon_sym_alignas] = ACTIONS(1131), - [anon_sym__Alignas] = ACTIONS(1131), - [sym_primitive_type] = ACTIONS(1131), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_struct] = ACTIONS(1131), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_if] = ACTIONS(1131), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_switch] = ACTIONS(1131), - [anon_sym_case] = ACTIONS(1131), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_while] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1131), - [anon_sym_break] = ACTIONS(1131), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_goto] = ACTIONS(1131), - [anon_sym___try] = ACTIONS(1131), - [anon_sym___leave] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [anon_sym_sizeof] = ACTIONS(1131), - [anon_sym___alignof__] = ACTIONS(1131), - [anon_sym___alignof] = ACTIONS(1131), - [anon_sym__alignof] = ACTIONS(1131), - [anon_sym_alignof] = ACTIONS(1131), - [anon_sym__Alignof] = ACTIONS(1131), - [anon_sym_offsetof] = ACTIONS(1131), - [anon_sym__Generic] = ACTIONS(1131), - [anon_sym_asm] = ACTIONS(1131), - [anon_sym___asm__] = ACTIONS(1131), - [sym_number_literal] = ACTIONS(1133), - [anon_sym_L_SQUOTE] = ACTIONS(1133), - [anon_sym_u_SQUOTE] = ACTIONS(1133), - [anon_sym_U_SQUOTE] = ACTIONS(1133), - [anon_sym_u8_SQUOTE] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1133), - [anon_sym_L_DQUOTE] = ACTIONS(1133), - [anon_sym_u_DQUOTE] = ACTIONS(1133), - [anon_sym_U_DQUOTE] = ACTIONS(1133), - [anon_sym_u8_DQUOTE] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1133), - [sym_true] = ACTIONS(1131), - [sym_false] = ACTIONS(1131), - [anon_sym_NULL] = ACTIONS(1131), - [anon_sym_nullptr] = ACTIONS(1131), + [165] = { + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym__Nonnull] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, - [192] = { - [sym_identifier] = ACTIONS(1135), - [aux_sym_preproc_include_token1] = ACTIONS(1135), - [aux_sym_preproc_def_token1] = ACTIONS(1135), - [aux_sym_preproc_if_token1] = ACTIONS(1135), - [aux_sym_preproc_if_token2] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), - [sym_preproc_directive] = ACTIONS(1135), - [anon_sym_LPAREN2] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym___extension__] = ACTIONS(1135), - [anon_sym_typedef] = ACTIONS(1135), - [anon_sym_extern] = ACTIONS(1135), - [anon_sym___attribute__] = ACTIONS(1135), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), - [anon_sym___declspec] = ACTIONS(1135), - [anon_sym___cdecl] = ACTIONS(1135), - [anon_sym___clrcall] = ACTIONS(1135), - [anon_sym___stdcall] = ACTIONS(1135), - [anon_sym___fastcall] = ACTIONS(1135), - [anon_sym___thiscall] = ACTIONS(1135), - [anon_sym___vectorcall] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_signed] = ACTIONS(1135), - [anon_sym_unsigned] = ACTIONS(1135), - [anon_sym_long] = ACTIONS(1135), - [anon_sym_short] = ACTIONS(1135), - [anon_sym_static] = ACTIONS(1135), - [anon_sym_auto] = ACTIONS(1135), - [anon_sym_register] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1135), - [anon_sym___inline] = ACTIONS(1135), - [anon_sym___inline__] = ACTIONS(1135), - [anon_sym___forceinline] = ACTIONS(1135), - [anon_sym_thread_local] = ACTIONS(1135), - [anon_sym___thread] = ACTIONS(1135), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_constexpr] = ACTIONS(1135), - [anon_sym_volatile] = ACTIONS(1135), - [anon_sym_restrict] = ACTIONS(1135), - [anon_sym___restrict__] = ACTIONS(1135), - [anon_sym__Atomic] = ACTIONS(1135), - [anon_sym__Noreturn] = ACTIONS(1135), - [anon_sym_noreturn] = ACTIONS(1135), - [anon_sym_alignas] = ACTIONS(1135), - [anon_sym__Alignas] = ACTIONS(1135), - [sym_primitive_type] = ACTIONS(1135), - [anon_sym_enum] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_case] = ACTIONS(1135), - [anon_sym_default] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_do] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_goto] = ACTIONS(1135), - [anon_sym___try] = ACTIONS(1135), - [anon_sym___leave] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1135), - [anon_sym___alignof__] = ACTIONS(1135), - [anon_sym___alignof] = ACTIONS(1135), - [anon_sym__alignof] = ACTIONS(1135), - [anon_sym_alignof] = ACTIONS(1135), - [anon_sym__Alignof] = ACTIONS(1135), - [anon_sym_offsetof] = ACTIONS(1135), - [anon_sym__Generic] = ACTIONS(1135), - [anon_sym_asm] = ACTIONS(1135), - [anon_sym___asm__] = ACTIONS(1135), - [sym_number_literal] = ACTIONS(1137), - [anon_sym_L_SQUOTE] = ACTIONS(1137), - [anon_sym_u_SQUOTE] = ACTIONS(1137), - [anon_sym_U_SQUOTE] = ACTIONS(1137), - [anon_sym_u8_SQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_L_DQUOTE] = ACTIONS(1137), - [anon_sym_u_DQUOTE] = ACTIONS(1137), - [anon_sym_U_DQUOTE] = ACTIONS(1137), - [anon_sym_u8_DQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_true] = ACTIONS(1135), - [sym_false] = ACTIONS(1135), - [anon_sym_NULL] = ACTIONS(1135), - [anon_sym_nullptr] = ACTIONS(1135), + [166] = { + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym__Nonnull] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_identifier] = ACTIONS(1125), - [aux_sym_preproc_include_token1] = ACTIONS(1125), - [aux_sym_preproc_def_token1] = ACTIONS(1125), - [aux_sym_preproc_if_token1] = ACTIONS(1125), - [aux_sym_preproc_if_token2] = ACTIONS(1125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), - [sym_preproc_directive] = ACTIONS(1125), - [anon_sym_LPAREN2] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_STAR] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym___extension__] = ACTIONS(1125), - [anon_sym_typedef] = ACTIONS(1125), - [anon_sym_extern] = ACTIONS(1125), - [anon_sym___attribute__] = ACTIONS(1125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1123), - [anon_sym___declspec] = ACTIONS(1125), - [anon_sym___cdecl] = ACTIONS(1125), - [anon_sym___clrcall] = ACTIONS(1125), - [anon_sym___stdcall] = ACTIONS(1125), - [anon_sym___fastcall] = ACTIONS(1125), - [anon_sym___thiscall] = ACTIONS(1125), - [anon_sym___vectorcall] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_signed] = ACTIONS(1125), - [anon_sym_unsigned] = ACTIONS(1125), - [anon_sym_long] = ACTIONS(1125), - [anon_sym_short] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_auto] = ACTIONS(1125), - [anon_sym_register] = ACTIONS(1125), - [anon_sym_inline] = ACTIONS(1125), - [anon_sym___inline] = ACTIONS(1125), - [anon_sym___inline__] = ACTIONS(1125), - [anon_sym___forceinline] = ACTIONS(1125), - [anon_sym_thread_local] = ACTIONS(1125), - [anon_sym___thread] = ACTIONS(1125), - [anon_sym_const] = ACTIONS(1125), - [anon_sym_constexpr] = ACTIONS(1125), - [anon_sym_volatile] = ACTIONS(1125), - [anon_sym_restrict] = ACTIONS(1125), - [anon_sym___restrict__] = ACTIONS(1125), - [anon_sym__Atomic] = ACTIONS(1125), - [anon_sym__Noreturn] = ACTIONS(1125), - [anon_sym_noreturn] = ACTIONS(1125), - [anon_sym_alignas] = ACTIONS(1125), - [anon_sym__Alignas] = ACTIONS(1125), - [sym_primitive_type] = ACTIONS(1125), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_struct] = ACTIONS(1125), - [anon_sym_union] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1125), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(1125), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1125), - [anon_sym_do] = ACTIONS(1125), - [anon_sym_for] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1125), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1125), - [anon_sym_goto] = ACTIONS(1125), - [anon_sym___try] = ACTIONS(1125), - [anon_sym___leave] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [anon_sym_sizeof] = ACTIONS(1125), - [anon_sym___alignof__] = ACTIONS(1125), - [anon_sym___alignof] = ACTIONS(1125), - [anon_sym__alignof] = ACTIONS(1125), - [anon_sym_alignof] = ACTIONS(1125), - [anon_sym__Alignof] = ACTIONS(1125), - [anon_sym_offsetof] = ACTIONS(1125), - [anon_sym__Generic] = ACTIONS(1125), - [anon_sym_asm] = ACTIONS(1125), - [anon_sym___asm__] = ACTIONS(1125), - [sym_number_literal] = ACTIONS(1123), - [anon_sym_L_SQUOTE] = ACTIONS(1123), - [anon_sym_u_SQUOTE] = ACTIONS(1123), - [anon_sym_U_SQUOTE] = ACTIONS(1123), - [anon_sym_u8_SQUOTE] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(1123), - [anon_sym_L_DQUOTE] = ACTIONS(1123), - [anon_sym_u_DQUOTE] = ACTIONS(1123), - [anon_sym_U_DQUOTE] = ACTIONS(1123), - [anon_sym_u8_DQUOTE] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [sym_true] = ACTIONS(1125), - [sym_false] = ACTIONS(1125), - [anon_sym_NULL] = ACTIONS(1125), - [anon_sym_nullptr] = ACTIONS(1125), + [167] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, - [194] = { - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1143), - [aux_sym_preproc_def_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token1] = ACTIONS(1143), - [aux_sym_preproc_if_token2] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), - [sym_preproc_directive] = ACTIONS(1143), - [anon_sym_LPAREN2] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_STAR] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym___extension__] = ACTIONS(1143), - [anon_sym_typedef] = ACTIONS(1143), - [anon_sym_extern] = ACTIONS(1143), - [anon_sym___attribute__] = ACTIONS(1143), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), - [anon_sym___declspec] = ACTIONS(1143), - [anon_sym___cdecl] = ACTIONS(1143), - [anon_sym___clrcall] = ACTIONS(1143), - [anon_sym___stdcall] = ACTIONS(1143), - [anon_sym___fastcall] = ACTIONS(1143), - [anon_sym___thiscall] = ACTIONS(1143), - [anon_sym___vectorcall] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_signed] = ACTIONS(1143), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_auto] = ACTIONS(1143), - [anon_sym_register] = ACTIONS(1143), - [anon_sym_inline] = ACTIONS(1143), - [anon_sym___inline] = ACTIONS(1143), - [anon_sym___inline__] = ACTIONS(1143), - [anon_sym___forceinline] = ACTIONS(1143), - [anon_sym_thread_local] = ACTIONS(1143), - [anon_sym___thread] = ACTIONS(1143), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_constexpr] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym___restrict__] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1143), - [anon_sym__Noreturn] = ACTIONS(1143), - [anon_sym_noreturn] = ACTIONS(1143), - [anon_sym_alignas] = ACTIONS(1143), - [anon_sym__Alignas] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(1143), - [anon_sym_enum] = ACTIONS(1143), - [anon_sym_struct] = ACTIONS(1143), - [anon_sym_union] = ACTIONS(1143), - [anon_sym_if] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1143), - [anon_sym_switch] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1143), - [anon_sym_default] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1143), - [anon_sym_do] = ACTIONS(1143), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_return] = ACTIONS(1143), - [anon_sym_break] = ACTIONS(1143), - [anon_sym_continue] = ACTIONS(1143), - [anon_sym_goto] = ACTIONS(1143), - [anon_sym___try] = ACTIONS(1143), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1145), - [anon_sym_PLUS_PLUS] = ACTIONS(1145), - [anon_sym_sizeof] = ACTIONS(1143), - [anon_sym___alignof__] = ACTIONS(1143), - [anon_sym___alignof] = ACTIONS(1143), - [anon_sym__alignof] = ACTIONS(1143), - [anon_sym_alignof] = ACTIONS(1143), - [anon_sym__Alignof] = ACTIONS(1143), - [anon_sym_offsetof] = ACTIONS(1143), - [anon_sym__Generic] = ACTIONS(1143), - [anon_sym_asm] = ACTIONS(1143), - [anon_sym___asm__] = ACTIONS(1143), - [sym_number_literal] = ACTIONS(1145), - [anon_sym_L_SQUOTE] = ACTIONS(1145), - [anon_sym_u_SQUOTE] = ACTIONS(1145), - [anon_sym_U_SQUOTE] = ACTIONS(1145), - [anon_sym_u8_SQUOTE] = ACTIONS(1145), - [anon_sym_SQUOTE] = ACTIONS(1145), - [anon_sym_L_DQUOTE] = ACTIONS(1145), - [anon_sym_u_DQUOTE] = ACTIONS(1145), - [anon_sym_U_DQUOTE] = ACTIONS(1145), - [anon_sym_u8_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE] = ACTIONS(1145), - [sym_true] = ACTIONS(1143), - [sym_false] = ACTIONS(1143), - [anon_sym_NULL] = ACTIONS(1143), - [anon_sym_nullptr] = ACTIONS(1143), + [168] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, - [195] = { - [ts_builtin_sym_end] = ACTIONS(1129), - [sym_identifier] = ACTIONS(1127), - [aux_sym_preproc_include_token1] = ACTIONS(1127), - [aux_sym_preproc_def_token1] = ACTIONS(1127), - [aux_sym_preproc_if_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), - [sym_preproc_directive] = ACTIONS(1127), - [anon_sym_LPAREN2] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1129), - [anon_sym___extension__] = ACTIONS(1127), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(1127), - [anon_sym___attribute__] = ACTIONS(1127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), - [anon_sym___declspec] = ACTIONS(1127), - [anon_sym___cdecl] = ACTIONS(1127), - [anon_sym___clrcall] = ACTIONS(1127), - [anon_sym___stdcall] = ACTIONS(1127), - [anon_sym___fastcall] = ACTIONS(1127), - [anon_sym___thiscall] = ACTIONS(1127), - [anon_sym___vectorcall] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_signed] = ACTIONS(1127), - [anon_sym_unsigned] = ACTIONS(1127), - [anon_sym_long] = ACTIONS(1127), - [anon_sym_short] = ACTIONS(1127), - [anon_sym_static] = ACTIONS(1127), - [anon_sym_auto] = ACTIONS(1127), - [anon_sym_register] = ACTIONS(1127), - [anon_sym_inline] = ACTIONS(1127), - [anon_sym___inline] = ACTIONS(1127), - [anon_sym___inline__] = ACTIONS(1127), - [anon_sym___forceinline] = ACTIONS(1127), - [anon_sym_thread_local] = ACTIONS(1127), - [anon_sym___thread] = ACTIONS(1127), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_constexpr] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym___restrict__] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [anon_sym__Noreturn] = ACTIONS(1127), - [anon_sym_noreturn] = ACTIONS(1127), - [anon_sym_alignas] = ACTIONS(1127), - [anon_sym__Alignas] = ACTIONS(1127), - [sym_primitive_type] = ACTIONS(1127), - [anon_sym_enum] = ACTIONS(1127), - [anon_sym_struct] = ACTIONS(1127), - [anon_sym_union] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1127), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_switch] = ACTIONS(1127), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_default] = ACTIONS(1127), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1127), - [anon_sym_for] = ACTIONS(1127), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1127), - [anon_sym_goto] = ACTIONS(1127), - [anon_sym___try] = ACTIONS(1127), - [anon_sym___leave] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1129), - [anon_sym_sizeof] = ACTIONS(1127), - [anon_sym___alignof__] = ACTIONS(1127), - [anon_sym___alignof] = ACTIONS(1127), - [anon_sym__alignof] = ACTIONS(1127), - [anon_sym_alignof] = ACTIONS(1127), - [anon_sym__Alignof] = ACTIONS(1127), - [anon_sym_offsetof] = ACTIONS(1127), - [anon_sym__Generic] = ACTIONS(1127), - [anon_sym_asm] = ACTIONS(1127), - [anon_sym___asm__] = ACTIONS(1127), - [sym_number_literal] = ACTIONS(1129), - [anon_sym_L_SQUOTE] = ACTIONS(1129), - [anon_sym_u_SQUOTE] = ACTIONS(1129), - [anon_sym_U_SQUOTE] = ACTIONS(1129), - [anon_sym_u8_SQUOTE] = ACTIONS(1129), - [anon_sym_SQUOTE] = ACTIONS(1129), - [anon_sym_L_DQUOTE] = ACTIONS(1129), - [anon_sym_u_DQUOTE] = ACTIONS(1129), - [anon_sym_U_DQUOTE] = ACTIONS(1129), - [anon_sym_u8_DQUOTE] = ACTIONS(1129), - [anon_sym_DQUOTE] = ACTIONS(1129), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [anon_sym_NULL] = ACTIONS(1127), - [anon_sym_nullptr] = ACTIONS(1127), + [169] = { + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym__Nonnull] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_identifier] = ACTIONS(1183), + [aux_sym_preproc_include_token1] = ACTIONS(1183), + [aux_sym_preproc_def_token1] = ACTIONS(1183), + [aux_sym_preproc_if_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), + [sym_preproc_directive] = ACTIONS(1183), + [anon_sym_LPAREN2] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym___extension__] = ACTIONS(1183), + [anon_sym_typedef] = ACTIONS(1183), + [anon_sym_extern] = ACTIONS(1183), + [anon_sym___attribute__] = ACTIONS(1183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym___declspec] = ACTIONS(1183), + [anon_sym___cdecl] = ACTIONS(1183), + [anon_sym___clrcall] = ACTIONS(1183), + [anon_sym___stdcall] = ACTIONS(1183), + [anon_sym___fastcall] = ACTIONS(1183), + [anon_sym___thiscall] = ACTIONS(1183), + [anon_sym___vectorcall] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_signed] = ACTIONS(1183), + [anon_sym_unsigned] = ACTIONS(1183), + [anon_sym_long] = ACTIONS(1183), + [anon_sym_short] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_auto] = ACTIONS(1183), + [anon_sym_register] = ACTIONS(1183), + [anon_sym_inline] = ACTIONS(1183), + [anon_sym___inline] = ACTIONS(1183), + [anon_sym___inline__] = ACTIONS(1183), + [anon_sym___forceinline] = ACTIONS(1183), + [anon_sym_thread_local] = ACTIONS(1183), + [anon_sym___thread] = ACTIONS(1183), + [anon_sym_const] = ACTIONS(1183), + [anon_sym_constexpr] = ACTIONS(1183), + [anon_sym_volatile] = ACTIONS(1183), + [anon_sym_restrict] = ACTIONS(1183), + [anon_sym___restrict__] = ACTIONS(1183), + [anon_sym__Atomic] = ACTIONS(1183), + [anon_sym__Noreturn] = ACTIONS(1183), + [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym__Nonnull] = ACTIONS(1183), + [anon_sym_alignas] = ACTIONS(1183), + [anon_sym__Alignas] = ACTIONS(1183), + [sym_primitive_type] = ACTIONS(1183), + [anon_sym_enum] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_union] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_switch] = ACTIONS(1183), + [anon_sym_case] = ACTIONS(1183), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_goto] = ACTIONS(1183), + [anon_sym___try] = ACTIONS(1183), + [anon_sym___leave] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_sizeof] = ACTIONS(1183), + [anon_sym___alignof__] = ACTIONS(1183), + [anon_sym___alignof] = ACTIONS(1183), + [anon_sym__alignof] = ACTIONS(1183), + [anon_sym_alignof] = ACTIONS(1183), + [anon_sym__Alignof] = ACTIONS(1183), + [anon_sym_offsetof] = ACTIONS(1183), + [anon_sym__Generic] = ACTIONS(1183), + [anon_sym_asm] = ACTIONS(1183), + [anon_sym___asm__] = ACTIONS(1183), + [sym_number_literal] = ACTIONS(1185), + [anon_sym_L_SQUOTE] = ACTIONS(1185), + [anon_sym_u_SQUOTE] = ACTIONS(1185), + [anon_sym_U_SQUOTE] = ACTIONS(1185), + [anon_sym_u8_SQUOTE] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_L_DQUOTE] = ACTIONS(1185), + [anon_sym_u_DQUOTE] = ACTIONS(1185), + [anon_sym_U_DQUOTE] = ACTIONS(1185), + [anon_sym_u8_DQUOTE] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_true] = ACTIONS(1183), + [sym_false] = ACTIONS(1183), + [anon_sym_NULL] = ACTIONS(1183), + [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_identifier] = ACTIONS(1223), - [aux_sym_preproc_include_token1] = ACTIONS(1223), - [aux_sym_preproc_def_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), - [sym_preproc_directive] = ACTIONS(1223), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym___extension__] = ACTIONS(1223), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym___attribute__] = ACTIONS(1223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), - [anon_sym___declspec] = ACTIONS(1223), - [anon_sym___cdecl] = ACTIONS(1223), - [anon_sym___clrcall] = ACTIONS(1223), - [anon_sym___stdcall] = ACTIONS(1223), - [anon_sym___fastcall] = ACTIONS(1223), - [anon_sym___thiscall] = ACTIONS(1223), - [anon_sym___vectorcall] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [anon_sym___inline] = ACTIONS(1223), - [anon_sym___inline__] = ACTIONS(1223), - [anon_sym___forceinline] = ACTIONS(1223), - [anon_sym_thread_local] = ACTIONS(1223), - [anon_sym___thread] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_constexpr] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym___restrict__] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym__Noreturn] = ACTIONS(1223), - [anon_sym_noreturn] = ACTIONS(1223), - [anon_sym_alignas] = ACTIONS(1223), - [anon_sym__Alignas] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym___try] = ACTIONS(1223), - [anon_sym___leave] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1223), - [anon_sym___alignof__] = ACTIONS(1223), - [anon_sym___alignof] = ACTIONS(1223), - [anon_sym__alignof] = ACTIONS(1223), - [anon_sym_alignof] = ACTIONS(1223), - [anon_sym__Alignof] = ACTIONS(1223), - [anon_sym_offsetof] = ACTIONS(1223), - [anon_sym__Generic] = ACTIONS(1223), - [anon_sym_asm] = ACTIONS(1223), - [anon_sym___asm__] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_L_SQUOTE] = ACTIONS(1225), - [anon_sym_u_SQUOTE] = ACTIONS(1225), - [anon_sym_U_SQUOTE] = ACTIONS(1225), - [anon_sym_u8_SQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [anon_sym_NULL] = ACTIONS(1223), - [anon_sym_nullptr] = ACTIONS(1223), + [171] = { + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym__Nonnull] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, - [197] = { - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token2] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), + [172] = { + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym__Nonnull] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), + [sym_comment] = ACTIONS(3), + }, + [173] = { + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym__Nonnull] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_identifier] = ACTIONS(1151), - [aux_sym_preproc_include_token1] = ACTIONS(1151), - [aux_sym_preproc_def_token1] = ACTIONS(1151), - [aux_sym_preproc_if_token1] = ACTIONS(1151), - [aux_sym_preproc_if_token2] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), - [sym_preproc_directive] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_TILDE] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1151), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym___extension__] = ACTIONS(1151), - [anon_sym_typedef] = ACTIONS(1151), - [anon_sym_extern] = ACTIONS(1151), - [anon_sym___attribute__] = ACTIONS(1151), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), - [anon_sym___declspec] = ACTIONS(1151), - [anon_sym___cdecl] = ACTIONS(1151), - [anon_sym___clrcall] = ACTIONS(1151), - [anon_sym___stdcall] = ACTIONS(1151), - [anon_sym___fastcall] = ACTIONS(1151), - [anon_sym___thiscall] = ACTIONS(1151), - [anon_sym___vectorcall] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_signed] = ACTIONS(1151), - [anon_sym_unsigned] = ACTIONS(1151), - [anon_sym_long] = ACTIONS(1151), - [anon_sym_short] = ACTIONS(1151), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_auto] = ACTIONS(1151), - [anon_sym_register] = ACTIONS(1151), - [anon_sym_inline] = ACTIONS(1151), - [anon_sym___inline] = ACTIONS(1151), - [anon_sym___inline__] = ACTIONS(1151), - [anon_sym___forceinline] = ACTIONS(1151), - [anon_sym_thread_local] = ACTIONS(1151), - [anon_sym___thread] = ACTIONS(1151), - [anon_sym_const] = ACTIONS(1151), - [anon_sym_constexpr] = ACTIONS(1151), - [anon_sym_volatile] = ACTIONS(1151), - [anon_sym_restrict] = ACTIONS(1151), - [anon_sym___restrict__] = ACTIONS(1151), - [anon_sym__Atomic] = ACTIONS(1151), - [anon_sym__Noreturn] = ACTIONS(1151), - [anon_sym_noreturn] = ACTIONS(1151), - [anon_sym_alignas] = ACTIONS(1151), - [anon_sym__Alignas] = ACTIONS(1151), - [sym_primitive_type] = ACTIONS(1151), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_struct] = ACTIONS(1151), - [anon_sym_union] = ACTIONS(1151), - [anon_sym_if] = ACTIONS(1151), - [anon_sym_else] = ACTIONS(1151), - [anon_sym_switch] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1151), - [anon_sym_default] = ACTIONS(1151), - [anon_sym_while] = ACTIONS(1151), - [anon_sym_do] = ACTIONS(1151), - [anon_sym_for] = ACTIONS(1151), - [anon_sym_return] = ACTIONS(1151), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1151), - [anon_sym_goto] = ACTIONS(1151), - [anon_sym___try] = ACTIONS(1151), - [anon_sym___leave] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1153), - [anon_sym_PLUS_PLUS] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1151), - [anon_sym___alignof__] = ACTIONS(1151), - [anon_sym___alignof] = ACTIONS(1151), - [anon_sym__alignof] = ACTIONS(1151), - [anon_sym_alignof] = ACTIONS(1151), - [anon_sym__Alignof] = ACTIONS(1151), - [anon_sym_offsetof] = ACTIONS(1151), - [anon_sym__Generic] = ACTIONS(1151), - [anon_sym_asm] = ACTIONS(1151), - [anon_sym___asm__] = ACTIONS(1151), - [sym_number_literal] = ACTIONS(1153), - [anon_sym_L_SQUOTE] = ACTIONS(1153), - [anon_sym_u_SQUOTE] = ACTIONS(1153), - [anon_sym_U_SQUOTE] = ACTIONS(1153), - [anon_sym_u8_SQUOTE] = ACTIONS(1153), - [anon_sym_SQUOTE] = ACTIONS(1153), - [anon_sym_L_DQUOTE] = ACTIONS(1153), - [anon_sym_u_DQUOTE] = ACTIONS(1153), - [anon_sym_U_DQUOTE] = ACTIONS(1153), - [anon_sym_u8_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE] = ACTIONS(1153), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [anon_sym_NULL] = ACTIONS(1151), - [anon_sym_nullptr] = ACTIONS(1151), + [174] = { + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym__Nonnull] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [199] = { - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token2] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_STAR] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym___extension__] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym___attribute__] = ACTIONS(1155), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), - [anon_sym___declspec] = ACTIONS(1155), - [anon_sym___cdecl] = ACTIONS(1155), - [anon_sym___clrcall] = ACTIONS(1155), - [anon_sym___stdcall] = ACTIONS(1155), - [anon_sym___fastcall] = ACTIONS(1155), - [anon_sym___thiscall] = ACTIONS(1155), - [anon_sym___vectorcall] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(1155), - [anon_sym_unsigned] = ACTIONS(1155), - [anon_sym_long] = ACTIONS(1155), - [anon_sym_short] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_auto] = ACTIONS(1155), - [anon_sym_register] = ACTIONS(1155), - [anon_sym_inline] = ACTIONS(1155), - [anon_sym___inline] = ACTIONS(1155), - [anon_sym___inline__] = ACTIONS(1155), - [anon_sym___forceinline] = ACTIONS(1155), - [anon_sym_thread_local] = ACTIONS(1155), - [anon_sym___thread] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_constexpr] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1155), - [anon_sym_restrict] = ACTIONS(1155), - [anon_sym___restrict__] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1155), - [anon_sym__Noreturn] = ACTIONS(1155), - [anon_sym_noreturn] = ACTIONS(1155), - [anon_sym_alignas] = ACTIONS(1155), - [anon_sym__Alignas] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_switch] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_goto] = ACTIONS(1155), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_sizeof] = ACTIONS(1155), - [anon_sym___alignof__] = ACTIONS(1155), - [anon_sym___alignof] = ACTIONS(1155), - [anon_sym__alignof] = ACTIONS(1155), - [anon_sym_alignof] = ACTIONS(1155), - [anon_sym__Alignof] = ACTIONS(1155), - [anon_sym_offsetof] = ACTIONS(1155), - [anon_sym__Generic] = ACTIONS(1155), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym___asm__] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1157), - [anon_sym_L_SQUOTE] = ACTIONS(1157), - [anon_sym_u_SQUOTE] = ACTIONS(1157), - [anon_sym_U_SQUOTE] = ACTIONS(1157), - [anon_sym_u8_SQUOTE] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_L_DQUOTE] = ACTIONS(1157), - [anon_sym_u_DQUOTE] = ACTIONS(1157), - [anon_sym_U_DQUOTE] = ACTIONS(1157), - [anon_sym_u8_DQUOTE] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1157), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [anon_sym_NULL] = ACTIONS(1155), - [anon_sym_nullptr] = ACTIONS(1155), + [175] = { + [ts_builtin_sym_end] = ACTIONS(1213), + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym__Nonnull] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), + [sym_comment] = ACTIONS(3), + }, + [176] = { + [sym_identifier] = ACTIONS(1215), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1215), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1215), + [sym_preproc_directive] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym___extension__] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_extern] = ACTIONS(1215), + [anon_sym___attribute__] = ACTIONS(1215), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1215), + [anon_sym___cdecl] = ACTIONS(1215), + [anon_sym___clrcall] = ACTIONS(1215), + [anon_sym___stdcall] = ACTIONS(1215), + [anon_sym___fastcall] = ACTIONS(1215), + [anon_sym___thiscall] = ACTIONS(1215), + [anon_sym___vectorcall] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1215), + [anon_sym_unsigned] = ACTIONS(1215), + [anon_sym_long] = ACTIONS(1215), + [anon_sym_short] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1215), + [anon_sym_auto] = ACTIONS(1215), + [anon_sym_register] = ACTIONS(1215), + [anon_sym_inline] = ACTIONS(1215), + [anon_sym___inline] = ACTIONS(1215), + [anon_sym___inline__] = ACTIONS(1215), + [anon_sym___forceinline] = ACTIONS(1215), + [anon_sym_thread_local] = ACTIONS(1215), + [anon_sym___thread] = ACTIONS(1215), + [anon_sym_const] = ACTIONS(1215), + [anon_sym_constexpr] = ACTIONS(1215), + [anon_sym_volatile] = ACTIONS(1215), + [anon_sym_restrict] = ACTIONS(1215), + [anon_sym___restrict__] = ACTIONS(1215), + [anon_sym__Atomic] = ACTIONS(1215), + [anon_sym__Noreturn] = ACTIONS(1215), + [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym__Nonnull] = ACTIONS(1215), + [anon_sym_alignas] = ACTIONS(1215), + [anon_sym__Alignas] = ACTIONS(1215), + [sym_primitive_type] = ACTIONS(1215), + [anon_sym_enum] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_union] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_switch] = ACTIONS(1215), + [anon_sym_case] = ACTIONS(1215), + [anon_sym_default] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_goto] = ACTIONS(1215), + [anon_sym___try] = ACTIONS(1215), + [anon_sym___leave] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_sizeof] = ACTIONS(1215), + [anon_sym___alignof__] = ACTIONS(1215), + [anon_sym___alignof] = ACTIONS(1215), + [anon_sym__alignof] = ACTIONS(1215), + [anon_sym_alignof] = ACTIONS(1215), + [anon_sym__Alignof] = ACTIONS(1215), + [anon_sym_offsetof] = ACTIONS(1215), + [anon_sym__Generic] = ACTIONS(1215), + [anon_sym_asm] = ACTIONS(1215), + [anon_sym___asm__] = ACTIONS(1215), + [sym_number_literal] = ACTIONS(1217), + [anon_sym_L_SQUOTE] = ACTIONS(1217), + [anon_sym_u_SQUOTE] = ACTIONS(1217), + [anon_sym_U_SQUOTE] = ACTIONS(1217), + [anon_sym_u8_SQUOTE] = ACTIONS(1217), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_L_DQUOTE] = ACTIONS(1217), + [anon_sym_u_DQUOTE] = ACTIONS(1217), + [anon_sym_U_DQUOTE] = ACTIONS(1217), + [anon_sym_u8_DQUOTE] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_true] = ACTIONS(1215), + [sym_false] = ACTIONS(1215), + [anon_sym_NULL] = ACTIONS(1215), + [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [200] = { - [sym_identifier] = ACTIONS(1159), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token2] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym___extension__] = ACTIONS(1159), - [anon_sym_typedef] = ACTIONS(1159), - [anon_sym_extern] = ACTIONS(1159), - [anon_sym___attribute__] = ACTIONS(1159), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), - [anon_sym___declspec] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1161), - [anon_sym_signed] = ACTIONS(1159), - [anon_sym_unsigned] = ACTIONS(1159), - [anon_sym_long] = ACTIONS(1159), - [anon_sym_short] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_auto] = ACTIONS(1159), - [anon_sym_register] = ACTIONS(1159), - [anon_sym_inline] = ACTIONS(1159), - [anon_sym___inline] = ACTIONS(1159), - [anon_sym___inline__] = ACTIONS(1159), - [anon_sym___forceinline] = ACTIONS(1159), - [anon_sym_thread_local] = ACTIONS(1159), - [anon_sym___thread] = ACTIONS(1159), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_constexpr] = ACTIONS(1159), - [anon_sym_volatile] = ACTIONS(1159), - [anon_sym_restrict] = ACTIONS(1159), - [anon_sym___restrict__] = ACTIONS(1159), - [anon_sym__Atomic] = ACTIONS(1159), - [anon_sym__Noreturn] = ACTIONS(1159), - [anon_sym_noreturn] = ACTIONS(1159), - [anon_sym_alignas] = ACTIONS(1159), - [anon_sym__Alignas] = ACTIONS(1159), - [sym_primitive_type] = ACTIONS(1159), - [anon_sym_enum] = ACTIONS(1159), - [anon_sym_struct] = ACTIONS(1159), - [anon_sym_union] = ACTIONS(1159), - [anon_sym_if] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(1159), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_for] = ACTIONS(1159), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_break] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1159), - [anon_sym_goto] = ACTIONS(1159), - [anon_sym___try] = ACTIONS(1159), - [anon_sym___leave] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_sizeof] = ACTIONS(1159), - [anon_sym___alignof__] = ACTIONS(1159), - [anon_sym___alignof] = ACTIONS(1159), - [anon_sym__alignof] = ACTIONS(1159), - [anon_sym_alignof] = ACTIONS(1159), - [anon_sym__Alignof] = ACTIONS(1159), - [anon_sym_offsetof] = ACTIONS(1159), - [anon_sym__Generic] = ACTIONS(1159), - [anon_sym_asm] = ACTIONS(1159), - [anon_sym___asm__] = ACTIONS(1159), - [sym_number_literal] = ACTIONS(1161), - [anon_sym_L_SQUOTE] = ACTIONS(1161), - [anon_sym_u_SQUOTE] = ACTIONS(1161), - [anon_sym_U_SQUOTE] = ACTIONS(1161), - [anon_sym_u8_SQUOTE] = ACTIONS(1161), - [anon_sym_SQUOTE] = ACTIONS(1161), - [anon_sym_L_DQUOTE] = ACTIONS(1161), - [anon_sym_u_DQUOTE] = ACTIONS(1161), - [anon_sym_U_DQUOTE] = ACTIONS(1161), - [anon_sym_u8_DQUOTE] = ACTIONS(1161), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym_true] = ACTIONS(1159), - [sym_false] = ACTIONS(1159), - [anon_sym_NULL] = ACTIONS(1159), - [anon_sym_nullptr] = ACTIONS(1159), + [177] = { + [sym_identifier] = ACTIONS(1219), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), + [sym_preproc_directive] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1219), + [anon_sym_extern] = ACTIONS(1219), + [anon_sym___attribute__] = ACTIONS(1219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1219), + [anon_sym___cdecl] = ACTIONS(1219), + [anon_sym___clrcall] = ACTIONS(1219), + [anon_sym___stdcall] = ACTIONS(1219), + [anon_sym___fastcall] = ACTIONS(1219), + [anon_sym___thiscall] = ACTIONS(1219), + [anon_sym___vectorcall] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1219), + [anon_sym_unsigned] = ACTIONS(1219), + [anon_sym_long] = ACTIONS(1219), + [anon_sym_short] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1219), + [anon_sym_auto] = ACTIONS(1219), + [anon_sym_register] = ACTIONS(1219), + [anon_sym_inline] = ACTIONS(1219), + [anon_sym___inline] = ACTIONS(1219), + [anon_sym___inline__] = ACTIONS(1219), + [anon_sym___forceinline] = ACTIONS(1219), + [anon_sym_thread_local] = ACTIONS(1219), + [anon_sym___thread] = ACTIONS(1219), + [anon_sym_const] = ACTIONS(1219), + [anon_sym_constexpr] = ACTIONS(1219), + [anon_sym_volatile] = ACTIONS(1219), + [anon_sym_restrict] = ACTIONS(1219), + [anon_sym___restrict__] = ACTIONS(1219), + [anon_sym__Atomic] = ACTIONS(1219), + [anon_sym__Noreturn] = ACTIONS(1219), + [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym__Nonnull] = ACTIONS(1219), + [anon_sym_alignas] = ACTIONS(1219), + [anon_sym__Alignas] = ACTIONS(1219), + [sym_primitive_type] = ACTIONS(1219), + [anon_sym_enum] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_union] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(1219), + [anon_sym_default] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_do] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_goto] = ACTIONS(1219), + [anon_sym___try] = ACTIONS(1219), + [anon_sym___leave] = ACTIONS(1219), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_sizeof] = ACTIONS(1219), + [anon_sym___alignof__] = ACTIONS(1219), + [anon_sym___alignof] = ACTIONS(1219), + [anon_sym__alignof] = ACTIONS(1219), + [anon_sym_alignof] = ACTIONS(1219), + [anon_sym__Alignof] = ACTIONS(1219), + [anon_sym_offsetof] = ACTIONS(1219), + [anon_sym__Generic] = ACTIONS(1219), + [anon_sym_asm] = ACTIONS(1219), + [anon_sym___asm__] = ACTIONS(1219), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_L_SQUOTE] = ACTIONS(1221), + [anon_sym_u_SQUOTE] = ACTIONS(1221), + [anon_sym_U_SQUOTE] = ACTIONS(1221), + [anon_sym_u8_SQUOTE] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_L_DQUOTE] = ACTIONS(1221), + [anon_sym_u_DQUOTE] = ACTIONS(1221), + [anon_sym_U_DQUOTE] = ACTIONS(1221), + [anon_sym_u8_DQUOTE] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_true] = ACTIONS(1219), + [sym_false] = ACTIONS(1219), + [anon_sym_NULL] = ACTIONS(1219), + [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_identifier] = ACTIONS(1167), - [aux_sym_preproc_include_token1] = ACTIONS(1167), - [aux_sym_preproc_def_token1] = ACTIONS(1167), - [aux_sym_preproc_if_token1] = ACTIONS(1167), - [aux_sym_preproc_if_token2] = ACTIONS(1167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), - [sym_preproc_directive] = ACTIONS(1167), - [anon_sym_LPAREN2] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1169), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym___extension__] = ACTIONS(1167), - [anon_sym_typedef] = ACTIONS(1167), - [anon_sym_extern] = ACTIONS(1167), - [anon_sym___attribute__] = ACTIONS(1167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), - [anon_sym___declspec] = ACTIONS(1167), - [anon_sym___cdecl] = ACTIONS(1167), - [anon_sym___clrcall] = ACTIONS(1167), - [anon_sym___stdcall] = ACTIONS(1167), - [anon_sym___fastcall] = ACTIONS(1167), - [anon_sym___thiscall] = ACTIONS(1167), - [anon_sym___vectorcall] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_signed] = ACTIONS(1167), - [anon_sym_unsigned] = ACTIONS(1167), - [anon_sym_long] = ACTIONS(1167), - [anon_sym_short] = ACTIONS(1167), - [anon_sym_static] = ACTIONS(1167), - [anon_sym_auto] = ACTIONS(1167), - [anon_sym_register] = ACTIONS(1167), - [anon_sym_inline] = ACTIONS(1167), - [anon_sym___inline] = ACTIONS(1167), - [anon_sym___inline__] = ACTIONS(1167), - [anon_sym___forceinline] = ACTIONS(1167), - [anon_sym_thread_local] = ACTIONS(1167), - [anon_sym___thread] = ACTIONS(1167), - [anon_sym_const] = ACTIONS(1167), - [anon_sym_constexpr] = ACTIONS(1167), - [anon_sym_volatile] = ACTIONS(1167), - [anon_sym_restrict] = ACTIONS(1167), - [anon_sym___restrict__] = ACTIONS(1167), - [anon_sym__Atomic] = ACTIONS(1167), - [anon_sym__Noreturn] = ACTIONS(1167), - [anon_sym_noreturn] = ACTIONS(1167), - [anon_sym_alignas] = ACTIONS(1167), - [anon_sym__Alignas] = ACTIONS(1167), - [sym_primitive_type] = ACTIONS(1167), - [anon_sym_enum] = ACTIONS(1167), - [anon_sym_struct] = ACTIONS(1167), - [anon_sym_union] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_switch] = ACTIONS(1167), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_goto] = ACTIONS(1167), - [anon_sym___try] = ACTIONS(1167), - [anon_sym___leave] = ACTIONS(1167), - [anon_sym_DASH_DASH] = ACTIONS(1169), - [anon_sym_PLUS_PLUS] = ACTIONS(1169), - [anon_sym_sizeof] = ACTIONS(1167), - [anon_sym___alignof__] = ACTIONS(1167), - [anon_sym___alignof] = ACTIONS(1167), - [anon_sym__alignof] = ACTIONS(1167), - [anon_sym_alignof] = ACTIONS(1167), - [anon_sym__Alignof] = ACTIONS(1167), - [anon_sym_offsetof] = ACTIONS(1167), - [anon_sym__Generic] = ACTIONS(1167), - [anon_sym_asm] = ACTIONS(1167), - [anon_sym___asm__] = ACTIONS(1167), - [sym_number_literal] = ACTIONS(1169), - [anon_sym_L_SQUOTE] = ACTIONS(1169), - [anon_sym_u_SQUOTE] = ACTIONS(1169), - [anon_sym_U_SQUOTE] = ACTIONS(1169), - [anon_sym_u8_SQUOTE] = ACTIONS(1169), - [anon_sym_SQUOTE] = ACTIONS(1169), - [anon_sym_L_DQUOTE] = ACTIONS(1169), - [anon_sym_u_DQUOTE] = ACTIONS(1169), - [anon_sym_U_DQUOTE] = ACTIONS(1169), - [anon_sym_u8_DQUOTE] = ACTIONS(1169), - [anon_sym_DQUOTE] = ACTIONS(1169), - [sym_true] = ACTIONS(1167), - [sym_false] = ACTIONS(1167), - [anon_sym_NULL] = ACTIONS(1167), - [anon_sym_nullptr] = ACTIONS(1167), + [178] = { + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym__Nonnull] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym__Nonnull] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, - [202] = { - [sym_identifier] = ACTIONS(1171), - [aux_sym_preproc_include_token1] = ACTIONS(1171), - [aux_sym_preproc_def_token1] = ACTIONS(1171), - [aux_sym_preproc_if_token1] = ACTIONS(1171), - [aux_sym_preproc_if_token2] = ACTIONS(1171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), - [sym_preproc_directive] = ACTIONS(1171), - [anon_sym_LPAREN2] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1171), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym___extension__] = ACTIONS(1171), - [anon_sym_typedef] = ACTIONS(1171), - [anon_sym_extern] = ACTIONS(1171), - [anon_sym___attribute__] = ACTIONS(1171), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), - [anon_sym___declspec] = ACTIONS(1171), - [anon_sym___cdecl] = ACTIONS(1171), - [anon_sym___clrcall] = ACTIONS(1171), - [anon_sym___stdcall] = ACTIONS(1171), - [anon_sym___fastcall] = ACTIONS(1171), - [anon_sym___thiscall] = ACTIONS(1171), - [anon_sym___vectorcall] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_signed] = ACTIONS(1171), - [anon_sym_unsigned] = ACTIONS(1171), - [anon_sym_long] = ACTIONS(1171), - [anon_sym_short] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1171), - [anon_sym_auto] = ACTIONS(1171), - [anon_sym_register] = ACTIONS(1171), - [anon_sym_inline] = ACTIONS(1171), - [anon_sym___inline] = ACTIONS(1171), - [anon_sym___inline__] = ACTIONS(1171), - [anon_sym___forceinline] = ACTIONS(1171), - [anon_sym_thread_local] = ACTIONS(1171), - [anon_sym___thread] = ACTIONS(1171), - [anon_sym_const] = ACTIONS(1171), - [anon_sym_constexpr] = ACTIONS(1171), - [anon_sym_volatile] = ACTIONS(1171), - [anon_sym_restrict] = ACTIONS(1171), - [anon_sym___restrict__] = ACTIONS(1171), - [anon_sym__Atomic] = ACTIONS(1171), - [anon_sym__Noreturn] = ACTIONS(1171), - [anon_sym_noreturn] = ACTIONS(1171), - [anon_sym_alignas] = ACTIONS(1171), - [anon_sym__Alignas] = ACTIONS(1171), - [sym_primitive_type] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1171), - [anon_sym_struct] = ACTIONS(1171), - [anon_sym_union] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1171), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_switch] = ACTIONS(1171), - [anon_sym_case] = ACTIONS(1171), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1171), - [anon_sym_for] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1171), - [anon_sym_break] = ACTIONS(1171), - [anon_sym_continue] = ACTIONS(1171), - [anon_sym_goto] = ACTIONS(1171), - [anon_sym___try] = ACTIONS(1171), - [anon_sym___leave] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1171), - [anon_sym___alignof__] = ACTIONS(1171), - [anon_sym___alignof] = ACTIONS(1171), - [anon_sym__alignof] = ACTIONS(1171), - [anon_sym_alignof] = ACTIONS(1171), - [anon_sym__Alignof] = ACTIONS(1171), - [anon_sym_offsetof] = ACTIONS(1171), - [anon_sym__Generic] = ACTIONS(1171), - [anon_sym_asm] = ACTIONS(1171), - [anon_sym___asm__] = ACTIONS(1171), - [sym_number_literal] = ACTIONS(1173), - [anon_sym_L_SQUOTE] = ACTIONS(1173), - [anon_sym_u_SQUOTE] = ACTIONS(1173), - [anon_sym_U_SQUOTE] = ACTIONS(1173), - [anon_sym_u8_SQUOTE] = ACTIONS(1173), - [anon_sym_SQUOTE] = ACTIONS(1173), - [anon_sym_L_DQUOTE] = ACTIONS(1173), - [anon_sym_u_DQUOTE] = ACTIONS(1173), - [anon_sym_U_DQUOTE] = ACTIONS(1173), - [anon_sym_u8_DQUOTE] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [sym_true] = ACTIONS(1171), - [sym_false] = ACTIONS(1171), - [anon_sym_NULL] = ACTIONS(1171), - [anon_sym_nullptr] = ACTIONS(1171), + [180] = { + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym__Nonnull] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, - [203] = { - [sym_identifier] = ACTIONS(1175), - [aux_sym_preproc_include_token1] = ACTIONS(1175), - [aux_sym_preproc_def_token1] = ACTIONS(1175), - [aux_sym_preproc_if_token1] = ACTIONS(1175), - [aux_sym_preproc_if_token2] = ACTIONS(1175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [sym_preproc_directive] = ACTIONS(1175), - [anon_sym_LPAREN2] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym___extension__] = ACTIONS(1175), - [anon_sym_typedef] = ACTIONS(1175), - [anon_sym_extern] = ACTIONS(1175), - [anon_sym___attribute__] = ACTIONS(1175), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), - [anon_sym___declspec] = ACTIONS(1175), - [anon_sym___cdecl] = ACTIONS(1175), - [anon_sym___clrcall] = ACTIONS(1175), - [anon_sym___stdcall] = ACTIONS(1175), - [anon_sym___fastcall] = ACTIONS(1175), - [anon_sym___thiscall] = ACTIONS(1175), - [anon_sym___vectorcall] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_signed] = ACTIONS(1175), - [anon_sym_unsigned] = ACTIONS(1175), - [anon_sym_long] = ACTIONS(1175), - [anon_sym_short] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_auto] = ACTIONS(1175), - [anon_sym_register] = ACTIONS(1175), - [anon_sym_inline] = ACTIONS(1175), - [anon_sym___inline] = ACTIONS(1175), - [anon_sym___inline__] = ACTIONS(1175), - [anon_sym___forceinline] = ACTIONS(1175), - [anon_sym_thread_local] = ACTIONS(1175), - [anon_sym___thread] = ACTIONS(1175), - [anon_sym_const] = ACTIONS(1175), - [anon_sym_constexpr] = ACTIONS(1175), - [anon_sym_volatile] = ACTIONS(1175), - [anon_sym_restrict] = ACTIONS(1175), - [anon_sym___restrict__] = ACTIONS(1175), - [anon_sym__Atomic] = ACTIONS(1175), - [anon_sym__Noreturn] = ACTIONS(1175), - [anon_sym_noreturn] = ACTIONS(1175), - [anon_sym_alignas] = ACTIONS(1175), - [anon_sym__Alignas] = ACTIONS(1175), - [sym_primitive_type] = ACTIONS(1175), - [anon_sym_enum] = ACTIONS(1175), - [anon_sym_struct] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(1175), - [anon_sym_if] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_switch] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1175), - [anon_sym_default] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1175), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_for] = ACTIONS(1175), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1175), - [anon_sym_continue] = ACTIONS(1175), - [anon_sym_goto] = ACTIONS(1175), - [anon_sym___try] = ACTIONS(1175), - [anon_sym___leave] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_sizeof] = ACTIONS(1175), - [anon_sym___alignof__] = ACTIONS(1175), - [anon_sym___alignof] = ACTIONS(1175), - [anon_sym__alignof] = ACTIONS(1175), - [anon_sym_alignof] = ACTIONS(1175), - [anon_sym__Alignof] = ACTIONS(1175), - [anon_sym_offsetof] = ACTIONS(1175), - [anon_sym__Generic] = ACTIONS(1175), - [anon_sym_asm] = ACTIONS(1175), - [anon_sym___asm__] = ACTIONS(1175), - [sym_number_literal] = ACTIONS(1177), - [anon_sym_L_SQUOTE] = ACTIONS(1177), - [anon_sym_u_SQUOTE] = ACTIONS(1177), - [anon_sym_U_SQUOTE] = ACTIONS(1177), - [anon_sym_u8_SQUOTE] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_L_DQUOTE] = ACTIONS(1177), - [anon_sym_u_DQUOTE] = ACTIONS(1177), - [anon_sym_U_DQUOTE] = ACTIONS(1177), - [anon_sym_u8_DQUOTE] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [sym_true] = ACTIONS(1175), - [sym_false] = ACTIONS(1175), - [anon_sym_NULL] = ACTIONS(1175), - [anon_sym_nullptr] = ACTIONS(1175), + [181] = { + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym__Nonnull] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + }, + [182] = { + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), + [sym_preproc_directive] = ACTIONS(1235), + [anon_sym_LPAREN2] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym___extension__] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1235), + [anon_sym_extern] = ACTIONS(1235), + [anon_sym___attribute__] = ACTIONS(1235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1235), + [anon_sym___cdecl] = ACTIONS(1235), + [anon_sym___clrcall] = ACTIONS(1235), + [anon_sym___stdcall] = ACTIONS(1235), + [anon_sym___fastcall] = ACTIONS(1235), + [anon_sym___thiscall] = ACTIONS(1235), + [anon_sym___vectorcall] = ACTIONS(1235), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1235), + [anon_sym_unsigned] = ACTIONS(1235), + [anon_sym_long] = ACTIONS(1235), + [anon_sym_short] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1235), + [anon_sym_auto] = ACTIONS(1235), + [anon_sym_register] = ACTIONS(1235), + [anon_sym_inline] = ACTIONS(1235), + [anon_sym___inline] = ACTIONS(1235), + [anon_sym___inline__] = ACTIONS(1235), + [anon_sym___forceinline] = ACTIONS(1235), + [anon_sym_thread_local] = ACTIONS(1235), + [anon_sym___thread] = ACTIONS(1235), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_constexpr] = ACTIONS(1235), + [anon_sym_volatile] = ACTIONS(1235), + [anon_sym_restrict] = ACTIONS(1235), + [anon_sym___restrict__] = ACTIONS(1235), + [anon_sym__Atomic] = ACTIONS(1235), + [anon_sym__Noreturn] = ACTIONS(1235), + [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym__Nonnull] = ACTIONS(1235), + [anon_sym_alignas] = ACTIONS(1235), + [anon_sym__Alignas] = ACTIONS(1235), + [sym_primitive_type] = ACTIONS(1235), + [anon_sym_enum] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_union] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_goto] = ACTIONS(1235), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_sizeof] = ACTIONS(1235), + [anon_sym___alignof__] = ACTIONS(1235), + [anon_sym___alignof] = ACTIONS(1235), + [anon_sym__alignof] = ACTIONS(1235), + [anon_sym_alignof] = ACTIONS(1235), + [anon_sym__Alignof] = ACTIONS(1235), + [anon_sym_offsetof] = ACTIONS(1235), + [anon_sym__Generic] = ACTIONS(1235), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_L_SQUOTE] = ACTIONS(1237), + [anon_sym_u_SQUOTE] = ACTIONS(1237), + [anon_sym_U_SQUOTE] = ACTIONS(1237), + [anon_sym_u8_SQUOTE] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(1237), + [anon_sym_L_DQUOTE] = ACTIONS(1237), + [anon_sym_u_DQUOTE] = ACTIONS(1237), + [anon_sym_U_DQUOTE] = ACTIONS(1237), + [anon_sym_u8_DQUOTE] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [anon_sym_NULL] = ACTIONS(1235), + [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(1169), - [sym_identifier] = ACTIONS(1167), - [aux_sym_preproc_include_token1] = ACTIONS(1167), - [aux_sym_preproc_def_token1] = ACTIONS(1167), - [aux_sym_preproc_if_token1] = ACTIONS(1167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), - [sym_preproc_directive] = ACTIONS(1167), - [anon_sym_LPAREN2] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1167), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1169), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym___extension__] = ACTIONS(1167), - [anon_sym_typedef] = ACTIONS(1167), - [anon_sym_extern] = ACTIONS(1167), - [anon_sym___attribute__] = ACTIONS(1167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), - [anon_sym___declspec] = ACTIONS(1167), - [anon_sym___cdecl] = ACTIONS(1167), - [anon_sym___clrcall] = ACTIONS(1167), - [anon_sym___stdcall] = ACTIONS(1167), - [anon_sym___fastcall] = ACTIONS(1167), - [anon_sym___thiscall] = ACTIONS(1167), - [anon_sym___vectorcall] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_signed] = ACTIONS(1167), - [anon_sym_unsigned] = ACTIONS(1167), - [anon_sym_long] = ACTIONS(1167), - [anon_sym_short] = ACTIONS(1167), - [anon_sym_static] = ACTIONS(1167), - [anon_sym_auto] = ACTIONS(1167), - [anon_sym_register] = ACTIONS(1167), - [anon_sym_inline] = ACTIONS(1167), - [anon_sym___inline] = ACTIONS(1167), - [anon_sym___inline__] = ACTIONS(1167), - [anon_sym___forceinline] = ACTIONS(1167), - [anon_sym_thread_local] = ACTIONS(1167), - [anon_sym___thread] = ACTIONS(1167), - [anon_sym_const] = ACTIONS(1167), - [anon_sym_constexpr] = ACTIONS(1167), - [anon_sym_volatile] = ACTIONS(1167), - [anon_sym_restrict] = ACTIONS(1167), - [anon_sym___restrict__] = ACTIONS(1167), - [anon_sym__Atomic] = ACTIONS(1167), - [anon_sym__Noreturn] = ACTIONS(1167), - [anon_sym_noreturn] = ACTIONS(1167), - [anon_sym_alignas] = ACTIONS(1167), - [anon_sym__Alignas] = ACTIONS(1167), - [sym_primitive_type] = ACTIONS(1167), - [anon_sym_enum] = ACTIONS(1167), - [anon_sym_struct] = ACTIONS(1167), - [anon_sym_union] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_switch] = ACTIONS(1167), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_goto] = ACTIONS(1167), - [anon_sym___try] = ACTIONS(1167), - [anon_sym___leave] = ACTIONS(1167), - [anon_sym_DASH_DASH] = ACTIONS(1169), - [anon_sym_PLUS_PLUS] = ACTIONS(1169), - [anon_sym_sizeof] = ACTIONS(1167), - [anon_sym___alignof__] = ACTIONS(1167), - [anon_sym___alignof] = ACTIONS(1167), - [anon_sym__alignof] = ACTIONS(1167), - [anon_sym_alignof] = ACTIONS(1167), - [anon_sym__Alignof] = ACTIONS(1167), - [anon_sym_offsetof] = ACTIONS(1167), - [anon_sym__Generic] = ACTIONS(1167), - [anon_sym_asm] = ACTIONS(1167), - [anon_sym___asm__] = ACTIONS(1167), - [sym_number_literal] = ACTIONS(1169), - [anon_sym_L_SQUOTE] = ACTIONS(1169), - [anon_sym_u_SQUOTE] = ACTIONS(1169), - [anon_sym_U_SQUOTE] = ACTIONS(1169), - [anon_sym_u8_SQUOTE] = ACTIONS(1169), - [anon_sym_SQUOTE] = ACTIONS(1169), - [anon_sym_L_DQUOTE] = ACTIONS(1169), - [anon_sym_u_DQUOTE] = ACTIONS(1169), - [anon_sym_U_DQUOTE] = ACTIONS(1169), - [anon_sym_u8_DQUOTE] = ACTIONS(1169), - [anon_sym_DQUOTE] = ACTIONS(1169), - [sym_true] = ACTIONS(1167), - [sym_false] = ACTIONS(1167), - [anon_sym_NULL] = ACTIONS(1167), - [anon_sym_nullptr] = ACTIONS(1167), + [183] = { + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym__Nonnull] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, - [205] = { - [sym_identifier] = ACTIONS(1191), - [aux_sym_preproc_include_token1] = ACTIONS(1191), - [aux_sym_preproc_def_token1] = ACTIONS(1191), - [aux_sym_preproc_if_token1] = ACTIONS(1191), - [aux_sym_preproc_if_token2] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), - [sym_preproc_directive] = ACTIONS(1191), - [anon_sym_LPAREN2] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym___extension__] = ACTIONS(1191), - [anon_sym_typedef] = ACTIONS(1191), - [anon_sym_extern] = ACTIONS(1191), - [anon_sym___attribute__] = ACTIONS(1191), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), - [anon_sym___declspec] = ACTIONS(1191), - [anon_sym___cdecl] = ACTIONS(1191), - [anon_sym___clrcall] = ACTIONS(1191), - [anon_sym___stdcall] = ACTIONS(1191), - [anon_sym___fastcall] = ACTIONS(1191), - [anon_sym___thiscall] = ACTIONS(1191), - [anon_sym___vectorcall] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_signed] = ACTIONS(1191), - [anon_sym_unsigned] = ACTIONS(1191), - [anon_sym_long] = ACTIONS(1191), - [anon_sym_short] = ACTIONS(1191), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_auto] = ACTIONS(1191), - [anon_sym_register] = ACTIONS(1191), - [anon_sym_inline] = ACTIONS(1191), - [anon_sym___inline] = ACTIONS(1191), - [anon_sym___inline__] = ACTIONS(1191), - [anon_sym___forceinline] = ACTIONS(1191), - [anon_sym_thread_local] = ACTIONS(1191), - [anon_sym___thread] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(1191), - [anon_sym_constexpr] = ACTIONS(1191), - [anon_sym_volatile] = ACTIONS(1191), - [anon_sym_restrict] = ACTIONS(1191), - [anon_sym___restrict__] = ACTIONS(1191), - [anon_sym__Atomic] = ACTIONS(1191), - [anon_sym__Noreturn] = ACTIONS(1191), - [anon_sym_noreturn] = ACTIONS(1191), - [anon_sym_alignas] = ACTIONS(1191), - [anon_sym__Alignas] = ACTIONS(1191), - [sym_primitive_type] = ACTIONS(1191), - [anon_sym_enum] = ACTIONS(1191), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_switch] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(1191), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1191), - [anon_sym_do] = ACTIONS(1191), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1191), - [anon_sym_goto] = ACTIONS(1191), - [anon_sym___try] = ACTIONS(1191), - [anon_sym___leave] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_sizeof] = ACTIONS(1191), - [anon_sym___alignof__] = ACTIONS(1191), - [anon_sym___alignof] = ACTIONS(1191), - [anon_sym__alignof] = ACTIONS(1191), - [anon_sym_alignof] = ACTIONS(1191), - [anon_sym__Alignof] = ACTIONS(1191), - [anon_sym_offsetof] = ACTIONS(1191), - [anon_sym__Generic] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1191), - [anon_sym___asm__] = ACTIONS(1191), - [sym_number_literal] = ACTIONS(1193), - [anon_sym_L_SQUOTE] = ACTIONS(1193), - [anon_sym_u_SQUOTE] = ACTIONS(1193), - [anon_sym_U_SQUOTE] = ACTIONS(1193), - [anon_sym_u8_SQUOTE] = ACTIONS(1193), - [anon_sym_SQUOTE] = ACTIONS(1193), - [anon_sym_L_DQUOTE] = ACTIONS(1193), - [anon_sym_u_DQUOTE] = ACTIONS(1193), - [anon_sym_U_DQUOTE] = ACTIONS(1193), - [anon_sym_u8_DQUOTE] = ACTIONS(1193), - [anon_sym_DQUOTE] = ACTIONS(1193), - [sym_true] = ACTIONS(1191), - [sym_false] = ACTIONS(1191), - [anon_sym_NULL] = ACTIONS(1191), - [anon_sym_nullptr] = ACTIONS(1191), + [184] = { + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym__Nonnull] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, - [206] = { - [sym_identifier] = ACTIONS(1195), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token2] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), - [sym_preproc_directive] = ACTIONS(1195), - [anon_sym_LPAREN2] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_TILDE] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1197), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym___extension__] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1195), - [anon_sym_extern] = ACTIONS(1195), - [anon_sym___attribute__] = ACTIONS(1195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1195), - [anon_sym___cdecl] = ACTIONS(1195), - [anon_sym___clrcall] = ACTIONS(1195), - [anon_sym___stdcall] = ACTIONS(1195), - [anon_sym___fastcall] = ACTIONS(1195), - [anon_sym___thiscall] = ACTIONS(1195), - [anon_sym___vectorcall] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1195), - [anon_sym_unsigned] = ACTIONS(1195), - [anon_sym_long] = ACTIONS(1195), - [anon_sym_short] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_auto] = ACTIONS(1195), - [anon_sym_register] = ACTIONS(1195), - [anon_sym_inline] = ACTIONS(1195), - [anon_sym___inline] = ACTIONS(1195), - [anon_sym___inline__] = ACTIONS(1195), - [anon_sym___forceinline] = ACTIONS(1195), - [anon_sym_thread_local] = ACTIONS(1195), - [anon_sym___thread] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_constexpr] = ACTIONS(1195), - [anon_sym_volatile] = ACTIONS(1195), - [anon_sym_restrict] = ACTIONS(1195), - [anon_sym___restrict__] = ACTIONS(1195), - [anon_sym__Atomic] = ACTIONS(1195), - [anon_sym__Noreturn] = ACTIONS(1195), - [anon_sym_noreturn] = ACTIONS(1195), - [anon_sym_alignas] = ACTIONS(1195), - [anon_sym__Alignas] = ACTIONS(1195), - [sym_primitive_type] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_else] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_goto] = ACTIONS(1195), - [anon_sym___try] = ACTIONS(1195), - [anon_sym___leave] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1197), - [anon_sym_PLUS_PLUS] = ACTIONS(1197), - [anon_sym_sizeof] = ACTIONS(1195), - [anon_sym___alignof__] = ACTIONS(1195), - [anon_sym___alignof] = ACTIONS(1195), - [anon_sym__alignof] = ACTIONS(1195), - [anon_sym_alignof] = ACTIONS(1195), - [anon_sym__Alignof] = ACTIONS(1195), - [anon_sym_offsetof] = ACTIONS(1195), - [anon_sym__Generic] = ACTIONS(1195), - [anon_sym_asm] = ACTIONS(1195), - [anon_sym___asm__] = ACTIONS(1195), - [sym_number_literal] = ACTIONS(1197), - [anon_sym_L_SQUOTE] = ACTIONS(1197), - [anon_sym_u_SQUOTE] = ACTIONS(1197), - [anon_sym_U_SQUOTE] = ACTIONS(1197), - [anon_sym_u8_SQUOTE] = ACTIONS(1197), - [anon_sym_SQUOTE] = ACTIONS(1197), - [anon_sym_L_DQUOTE] = ACTIONS(1197), - [anon_sym_u_DQUOTE] = ACTIONS(1197), - [anon_sym_U_DQUOTE] = ACTIONS(1197), - [anon_sym_u8_DQUOTE] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_true] = ACTIONS(1195), - [sym_false] = ACTIONS(1195), - [anon_sym_NULL] = ACTIONS(1195), - [anon_sym_nullptr] = ACTIONS(1195), + [185] = { + [sym_identifier] = ACTIONS(1127), + [aux_sym_preproc_include_token1] = ACTIONS(1127), + [aux_sym_preproc_def_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token2] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym___extension__] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym___attribute__] = ACTIONS(1127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), + [anon_sym___declspec] = ACTIONS(1127), + [anon_sym___cdecl] = ACTIONS(1127), + [anon_sym___clrcall] = ACTIONS(1127), + [anon_sym___stdcall] = ACTIONS(1127), + [anon_sym___fastcall] = ACTIONS(1127), + [anon_sym___thiscall] = ACTIONS(1127), + [anon_sym___vectorcall] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym___inline] = ACTIONS(1127), + [anon_sym___inline__] = ACTIONS(1127), + [anon_sym___forceinline] = ACTIONS(1127), + [anon_sym_thread_local] = ACTIONS(1127), + [anon_sym___thread] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_constexpr] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym___restrict__] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym__Noreturn] = ACTIONS(1127), + [anon_sym_noreturn] = ACTIONS(1127), + [anon_sym__Nonnull] = ACTIONS(1127), + [anon_sym_alignas] = ACTIONS(1127), + [anon_sym__Alignas] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym___try] = ACTIONS(1127), + [anon_sym___leave] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1127), + [anon_sym___alignof__] = ACTIONS(1127), + [anon_sym___alignof] = ACTIONS(1127), + [anon_sym__alignof] = ACTIONS(1127), + [anon_sym_alignof] = ACTIONS(1127), + [anon_sym__Alignof] = ACTIONS(1127), + [anon_sym_offsetof] = ACTIONS(1127), + [anon_sym__Generic] = ACTIONS(1127), + [anon_sym_asm] = ACTIONS(1127), + [anon_sym___asm__] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_L_SQUOTE] = ACTIONS(1129), + [anon_sym_u_SQUOTE] = ACTIONS(1129), + [anon_sym_U_SQUOTE] = ACTIONS(1129), + [anon_sym_u8_SQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_L_DQUOTE] = ACTIONS(1129), + [anon_sym_u_DQUOTE] = ACTIONS(1129), + [anon_sym_U_DQUOTE] = ACTIONS(1129), + [anon_sym_u8_DQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [anon_sym_NULL] = ACTIONS(1127), + [anon_sym_nullptr] = ACTIONS(1127), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_include_token1] = ACTIONS(1199), - [aux_sym_preproc_def_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token2] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), - [sym_preproc_directive] = ACTIONS(1199), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym___extension__] = ACTIONS(1199), - [anon_sym_typedef] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym___attribute__] = ACTIONS(1199), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), - [anon_sym___declspec] = ACTIONS(1199), - [anon_sym___cdecl] = ACTIONS(1199), - [anon_sym___clrcall] = ACTIONS(1199), - [anon_sym___stdcall] = ACTIONS(1199), - [anon_sym___fastcall] = ACTIONS(1199), - [anon_sym___thiscall] = ACTIONS(1199), - [anon_sym___vectorcall] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_signed] = ACTIONS(1199), - [anon_sym_unsigned] = ACTIONS(1199), - [anon_sym_long] = ACTIONS(1199), - [anon_sym_short] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_auto] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_inline] = ACTIONS(1199), - [anon_sym___inline] = ACTIONS(1199), - [anon_sym___inline__] = ACTIONS(1199), - [anon_sym___forceinline] = ACTIONS(1199), - [anon_sym_thread_local] = ACTIONS(1199), - [anon_sym___thread] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_constexpr] = ACTIONS(1199), - [anon_sym_volatile] = ACTIONS(1199), - [anon_sym_restrict] = ACTIONS(1199), - [anon_sym___restrict__] = ACTIONS(1199), - [anon_sym__Atomic] = ACTIONS(1199), - [anon_sym__Noreturn] = ACTIONS(1199), - [anon_sym_noreturn] = ACTIONS(1199), - [anon_sym_alignas] = ACTIONS(1199), - [anon_sym__Alignas] = ACTIONS(1199), - [sym_primitive_type] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_else] = ACTIONS(1199), - [anon_sym_switch] = ACTIONS(1199), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_goto] = ACTIONS(1199), - [anon_sym___try] = ACTIONS(1199), - [anon_sym___leave] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1199), - [anon_sym___alignof__] = ACTIONS(1199), - [anon_sym___alignof] = ACTIONS(1199), - [anon_sym__alignof] = ACTIONS(1199), - [anon_sym_alignof] = ACTIONS(1199), - [anon_sym__Alignof] = ACTIONS(1199), - [anon_sym_offsetof] = ACTIONS(1199), - [anon_sym__Generic] = ACTIONS(1199), - [anon_sym_asm] = ACTIONS(1199), - [anon_sym___asm__] = ACTIONS(1199), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1199), - [sym_false] = ACTIONS(1199), - [anon_sym_NULL] = ACTIONS(1199), - [anon_sym_nullptr] = ACTIONS(1199), + [186] = { + [sym_identifier] = ACTIONS(1131), + [aux_sym_preproc_include_token1] = ACTIONS(1131), + [aux_sym_preproc_def_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token1] = ACTIONS(1131), + [aux_sym_preproc_if_token2] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1131), + [sym_preproc_directive] = ACTIONS(1131), + [anon_sym_LPAREN2] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym___extension__] = ACTIONS(1131), + [anon_sym_typedef] = ACTIONS(1131), + [anon_sym_extern] = ACTIONS(1131), + [anon_sym___attribute__] = ACTIONS(1131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1133), + [anon_sym___declspec] = ACTIONS(1131), + [anon_sym___cdecl] = ACTIONS(1131), + [anon_sym___clrcall] = ACTIONS(1131), + [anon_sym___stdcall] = ACTIONS(1131), + [anon_sym___fastcall] = ACTIONS(1131), + [anon_sym___thiscall] = ACTIONS(1131), + [anon_sym___vectorcall] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_signed] = ACTIONS(1131), + [anon_sym_unsigned] = ACTIONS(1131), + [anon_sym_long] = ACTIONS(1131), + [anon_sym_short] = ACTIONS(1131), + [anon_sym_static] = ACTIONS(1131), + [anon_sym_auto] = ACTIONS(1131), + [anon_sym_register] = ACTIONS(1131), + [anon_sym_inline] = ACTIONS(1131), + [anon_sym___inline] = ACTIONS(1131), + [anon_sym___inline__] = ACTIONS(1131), + [anon_sym___forceinline] = ACTIONS(1131), + [anon_sym_thread_local] = ACTIONS(1131), + [anon_sym___thread] = ACTIONS(1131), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_constexpr] = ACTIONS(1131), + [anon_sym_volatile] = ACTIONS(1131), + [anon_sym_restrict] = ACTIONS(1131), + [anon_sym___restrict__] = ACTIONS(1131), + [anon_sym__Atomic] = ACTIONS(1131), + [anon_sym__Noreturn] = ACTIONS(1131), + [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym__Nonnull] = ACTIONS(1131), + [anon_sym_alignas] = ACTIONS(1131), + [anon_sym__Alignas] = ACTIONS(1131), + [sym_primitive_type] = ACTIONS(1131), + [anon_sym_enum] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_switch] = ACTIONS(1131), + [anon_sym_case] = ACTIONS(1131), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_goto] = ACTIONS(1131), + [anon_sym___try] = ACTIONS(1131), + [anon_sym___leave] = ACTIONS(1131), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_sizeof] = ACTIONS(1131), + [anon_sym___alignof__] = ACTIONS(1131), + [anon_sym___alignof] = ACTIONS(1131), + [anon_sym__alignof] = ACTIONS(1131), + [anon_sym_alignof] = ACTIONS(1131), + [anon_sym__Alignof] = ACTIONS(1131), + [anon_sym_offsetof] = ACTIONS(1131), + [anon_sym__Generic] = ACTIONS(1131), + [anon_sym_asm] = ACTIONS(1131), + [anon_sym___asm__] = ACTIONS(1131), + [sym_number_literal] = ACTIONS(1133), + [anon_sym_L_SQUOTE] = ACTIONS(1133), + [anon_sym_u_SQUOTE] = ACTIONS(1133), + [anon_sym_U_SQUOTE] = ACTIONS(1133), + [anon_sym_u8_SQUOTE] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_L_DQUOTE] = ACTIONS(1133), + [anon_sym_u_DQUOTE] = ACTIONS(1133), + [anon_sym_U_DQUOTE] = ACTIONS(1133), + [anon_sym_u8_DQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_true] = ACTIONS(1131), + [sym_false] = ACTIONS(1131), + [anon_sym_NULL] = ACTIONS(1131), + [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, - [208] = { - [sym_identifier] = ACTIONS(1203), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token2] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), - [sym_preproc_directive] = ACTIONS(1203), - [anon_sym_LPAREN2] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym___extension__] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1203), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym___attribute__] = ACTIONS(1203), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), - [anon_sym___declspec] = ACTIONS(1203), - [anon_sym___cdecl] = ACTIONS(1203), - [anon_sym___clrcall] = ACTIONS(1203), - [anon_sym___stdcall] = ACTIONS(1203), - [anon_sym___fastcall] = ACTIONS(1203), - [anon_sym___thiscall] = ACTIONS(1203), - [anon_sym___vectorcall] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_signed] = ACTIONS(1203), - [anon_sym_unsigned] = ACTIONS(1203), - [anon_sym_long] = ACTIONS(1203), - [anon_sym_short] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_auto] = ACTIONS(1203), - [anon_sym_register] = ACTIONS(1203), - [anon_sym_inline] = ACTIONS(1203), - [anon_sym___inline] = ACTIONS(1203), - [anon_sym___inline__] = ACTIONS(1203), - [anon_sym___forceinline] = ACTIONS(1203), - [anon_sym_thread_local] = ACTIONS(1203), - [anon_sym___thread] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_constexpr] = ACTIONS(1203), - [anon_sym_volatile] = ACTIONS(1203), - [anon_sym_restrict] = ACTIONS(1203), - [anon_sym___restrict__] = ACTIONS(1203), - [anon_sym__Atomic] = ACTIONS(1203), - [anon_sym__Noreturn] = ACTIONS(1203), - [anon_sym_noreturn] = ACTIONS(1203), - [anon_sym_alignas] = ACTIONS(1203), - [anon_sym__Alignas] = ACTIONS(1203), - [sym_primitive_type] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_else] = ACTIONS(1203), - [anon_sym_switch] = ACTIONS(1203), - [anon_sym_case] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_do] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_goto] = ACTIONS(1203), - [anon_sym___try] = ACTIONS(1203), - [anon_sym___leave] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1205), - [anon_sym_PLUS_PLUS] = ACTIONS(1205), - [anon_sym_sizeof] = ACTIONS(1203), - [anon_sym___alignof__] = ACTIONS(1203), - [anon_sym___alignof] = ACTIONS(1203), - [anon_sym__alignof] = ACTIONS(1203), - [anon_sym_alignof] = ACTIONS(1203), - [anon_sym__Alignof] = ACTIONS(1203), - [anon_sym_offsetof] = ACTIONS(1203), - [anon_sym__Generic] = ACTIONS(1203), - [anon_sym_asm] = ACTIONS(1203), - [anon_sym___asm__] = ACTIONS(1203), - [sym_number_literal] = ACTIONS(1205), - [anon_sym_L_SQUOTE] = ACTIONS(1205), - [anon_sym_u_SQUOTE] = ACTIONS(1205), - [anon_sym_U_SQUOTE] = ACTIONS(1205), - [anon_sym_u8_SQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1205), - [anon_sym_L_DQUOTE] = ACTIONS(1205), - [anon_sym_u_DQUOTE] = ACTIONS(1205), - [anon_sym_U_DQUOTE] = ACTIONS(1205), - [anon_sym_u8_DQUOTE] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1205), - [sym_true] = ACTIONS(1203), - [sym_false] = ACTIONS(1203), - [anon_sym_NULL] = ACTIONS(1203), - [anon_sym_nullptr] = ACTIONS(1203), + [187] = { + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token2] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym__Nonnull] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), + [sym_comment] = ACTIONS(3), + }, + [188] = { + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym__Nonnull] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [209] = { - [sym_identifier] = ACTIONS(1207), - [aux_sym_preproc_include_token1] = ACTIONS(1207), - [aux_sym_preproc_def_token1] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1207), - [aux_sym_preproc_if_token2] = ACTIONS(1207), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), - [sym_preproc_directive] = ACTIONS(1207), - [anon_sym_LPAREN2] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1209), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym___extension__] = ACTIONS(1207), - [anon_sym_typedef] = ACTIONS(1207), - [anon_sym_extern] = ACTIONS(1207), - [anon_sym___attribute__] = ACTIONS(1207), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), - [anon_sym___declspec] = ACTIONS(1207), - [anon_sym___cdecl] = ACTIONS(1207), - [anon_sym___clrcall] = ACTIONS(1207), - [anon_sym___stdcall] = ACTIONS(1207), - [anon_sym___fastcall] = ACTIONS(1207), - [anon_sym___thiscall] = ACTIONS(1207), - [anon_sym___vectorcall] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_signed] = ACTIONS(1207), - [anon_sym_unsigned] = ACTIONS(1207), - [anon_sym_long] = ACTIONS(1207), - [anon_sym_short] = ACTIONS(1207), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_auto] = ACTIONS(1207), - [anon_sym_register] = ACTIONS(1207), - [anon_sym_inline] = ACTIONS(1207), - [anon_sym___inline] = ACTIONS(1207), - [anon_sym___inline__] = ACTIONS(1207), - [anon_sym___forceinline] = ACTIONS(1207), - [anon_sym_thread_local] = ACTIONS(1207), - [anon_sym___thread] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_constexpr] = ACTIONS(1207), - [anon_sym_volatile] = ACTIONS(1207), - [anon_sym_restrict] = ACTIONS(1207), - [anon_sym___restrict__] = ACTIONS(1207), - [anon_sym__Atomic] = ACTIONS(1207), - [anon_sym__Noreturn] = ACTIONS(1207), - [anon_sym_noreturn] = ACTIONS(1207), - [anon_sym_alignas] = ACTIONS(1207), - [anon_sym__Alignas] = ACTIONS(1207), - [sym_primitive_type] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [anon_sym_struct] = ACTIONS(1207), - [anon_sym_union] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_else] = ACTIONS(1207), - [anon_sym_switch] = ACTIONS(1207), - [anon_sym_case] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_do] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_goto] = ACTIONS(1207), - [anon_sym___try] = ACTIONS(1207), - [anon_sym___leave] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_sizeof] = ACTIONS(1207), - [anon_sym___alignof__] = ACTIONS(1207), - [anon_sym___alignof] = ACTIONS(1207), - [anon_sym__alignof] = ACTIONS(1207), - [anon_sym_alignof] = ACTIONS(1207), - [anon_sym__Alignof] = ACTIONS(1207), - [anon_sym_offsetof] = ACTIONS(1207), - [anon_sym__Generic] = ACTIONS(1207), - [anon_sym_asm] = ACTIONS(1207), - [anon_sym___asm__] = ACTIONS(1207), - [sym_number_literal] = ACTIONS(1209), - [anon_sym_L_SQUOTE] = ACTIONS(1209), - [anon_sym_u_SQUOTE] = ACTIONS(1209), - [anon_sym_U_SQUOTE] = ACTIONS(1209), - [anon_sym_u8_SQUOTE] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_L_DQUOTE] = ACTIONS(1209), - [anon_sym_u_DQUOTE] = ACTIONS(1209), - [anon_sym_U_DQUOTE] = ACTIONS(1209), - [anon_sym_u8_DQUOTE] = ACTIONS(1209), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [anon_sym_NULL] = ACTIONS(1207), - [anon_sym_nullptr] = ACTIONS(1207), + [189] = { + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token2] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym__Nonnull] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), [sym_comment] = ACTIONS(3), }, - [210] = { - [sym_identifier] = ACTIONS(1211), - [aux_sym_preproc_include_token1] = ACTIONS(1211), - [aux_sym_preproc_def_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token2] = ACTIONS(1211), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), - [sym_preproc_directive] = ACTIONS(1211), - [anon_sym_LPAREN2] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1211), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym___extension__] = ACTIONS(1211), - [anon_sym_typedef] = ACTIONS(1211), - [anon_sym_extern] = ACTIONS(1211), - [anon_sym___attribute__] = ACTIONS(1211), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), - [anon_sym___declspec] = ACTIONS(1211), - [anon_sym___cdecl] = ACTIONS(1211), - [anon_sym___clrcall] = ACTIONS(1211), - [anon_sym___stdcall] = ACTIONS(1211), - [anon_sym___fastcall] = ACTIONS(1211), - [anon_sym___thiscall] = ACTIONS(1211), - [anon_sym___vectorcall] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_signed] = ACTIONS(1211), - [anon_sym_unsigned] = ACTIONS(1211), - [anon_sym_long] = ACTIONS(1211), - [anon_sym_short] = ACTIONS(1211), - [anon_sym_static] = ACTIONS(1211), - [anon_sym_auto] = ACTIONS(1211), - [anon_sym_register] = ACTIONS(1211), - [anon_sym_inline] = ACTIONS(1211), - [anon_sym___inline] = ACTIONS(1211), - [anon_sym___inline__] = ACTIONS(1211), - [anon_sym___forceinline] = ACTIONS(1211), - [anon_sym_thread_local] = ACTIONS(1211), - [anon_sym___thread] = ACTIONS(1211), - [anon_sym_const] = ACTIONS(1211), - [anon_sym_constexpr] = ACTIONS(1211), - [anon_sym_volatile] = ACTIONS(1211), - [anon_sym_restrict] = ACTIONS(1211), - [anon_sym___restrict__] = ACTIONS(1211), - [anon_sym__Atomic] = ACTIONS(1211), - [anon_sym__Noreturn] = ACTIONS(1211), - [anon_sym_noreturn] = ACTIONS(1211), - [anon_sym_alignas] = ACTIONS(1211), - [anon_sym__Alignas] = ACTIONS(1211), - [sym_primitive_type] = ACTIONS(1211), - [anon_sym_enum] = ACTIONS(1211), - [anon_sym_struct] = ACTIONS(1211), - [anon_sym_union] = ACTIONS(1211), - [anon_sym_if] = ACTIONS(1211), - [anon_sym_else] = ACTIONS(1211), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_case] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1211), - [anon_sym_while] = ACTIONS(1211), - [anon_sym_do] = ACTIONS(1211), - [anon_sym_for] = ACTIONS(1211), - [anon_sym_return] = ACTIONS(1211), - [anon_sym_break] = ACTIONS(1211), - [anon_sym_continue] = ACTIONS(1211), - [anon_sym_goto] = ACTIONS(1211), - [anon_sym___try] = ACTIONS(1211), - [anon_sym___leave] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_sizeof] = ACTIONS(1211), - [anon_sym___alignof__] = ACTIONS(1211), - [anon_sym___alignof] = ACTIONS(1211), - [anon_sym__alignof] = ACTIONS(1211), - [anon_sym_alignof] = ACTIONS(1211), - [anon_sym__Alignof] = ACTIONS(1211), - [anon_sym_offsetof] = ACTIONS(1211), - [anon_sym__Generic] = ACTIONS(1211), - [anon_sym_asm] = ACTIONS(1211), - [anon_sym___asm__] = ACTIONS(1211), - [sym_number_literal] = ACTIONS(1213), - [anon_sym_L_SQUOTE] = ACTIONS(1213), - [anon_sym_u_SQUOTE] = ACTIONS(1213), - [anon_sym_U_SQUOTE] = ACTIONS(1213), - [anon_sym_u8_SQUOTE] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(1213), - [anon_sym_L_DQUOTE] = ACTIONS(1213), - [anon_sym_u_DQUOTE] = ACTIONS(1213), - [anon_sym_U_DQUOTE] = ACTIONS(1213), - [anon_sym_u8_DQUOTE] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1213), - [sym_true] = ACTIONS(1211), - [sym_false] = ACTIONS(1211), - [anon_sym_NULL] = ACTIONS(1211), - [anon_sym_nullptr] = ACTIONS(1211), + [190] = { + [sym_identifier] = ACTIONS(1143), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym___extension__] = ACTIONS(1143), + [anon_sym_typedef] = ACTIONS(1143), + [anon_sym_extern] = ACTIONS(1143), + [anon_sym___attribute__] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_signed] = ACTIONS(1143), + [anon_sym_unsigned] = ACTIONS(1143), + [anon_sym_long] = ACTIONS(1143), + [anon_sym_short] = ACTIONS(1143), + [anon_sym_static] = ACTIONS(1143), + [anon_sym_auto] = ACTIONS(1143), + [anon_sym_register] = ACTIONS(1143), + [anon_sym_inline] = ACTIONS(1143), + [anon_sym___inline] = ACTIONS(1143), + [anon_sym___inline__] = ACTIONS(1143), + [anon_sym___forceinline] = ACTIONS(1143), + [anon_sym_thread_local] = ACTIONS(1143), + [anon_sym___thread] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_constexpr] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym___restrict__] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1143), + [anon_sym__Noreturn] = ACTIONS(1143), + [anon_sym_noreturn] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym_alignas] = ACTIONS(1143), + [anon_sym__Alignas] = ACTIONS(1143), + [sym_primitive_type] = ACTIONS(1143), + [anon_sym_enum] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_union] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1143), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1143), + [anon_sym___try] = ACTIONS(1143), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_sizeof] = ACTIONS(1143), + [anon_sym___alignof__] = ACTIONS(1143), + [anon_sym___alignof] = ACTIONS(1143), + [anon_sym__alignof] = ACTIONS(1143), + [anon_sym_alignof] = ACTIONS(1143), + [anon_sym__Alignof] = ACTIONS(1143), + [anon_sym_offsetof] = ACTIONS(1143), + [anon_sym__Generic] = ACTIONS(1143), + [anon_sym_asm] = ACTIONS(1143), + [anon_sym___asm__] = ACTIONS(1143), + [sym_number_literal] = ACTIONS(1145), + [anon_sym_L_SQUOTE] = ACTIONS(1145), + [anon_sym_u_SQUOTE] = ACTIONS(1145), + [anon_sym_U_SQUOTE] = ACTIONS(1145), + [anon_sym_u8_SQUOTE] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_L_DQUOTE] = ACTIONS(1145), + [anon_sym_u_DQUOTE] = ACTIONS(1145), + [anon_sym_U_DQUOTE] = ACTIONS(1145), + [anon_sym_u8_DQUOTE] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_true] = ACTIONS(1143), + [sym_false] = ACTIONS(1143), + [anon_sym_NULL] = ACTIONS(1143), + [anon_sym_nullptr] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + }, + [191] = { + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token2] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym__Nonnull] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), [sym_comment] = ACTIONS(3), }, - [211] = { - [sym_identifier] = ACTIONS(1227), - [aux_sym_preproc_include_token1] = ACTIONS(1227), - [aux_sym_preproc_def_token1] = ACTIONS(1227), - [aux_sym_preproc_if_token1] = ACTIONS(1227), - [aux_sym_preproc_if_token2] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), - [sym_preproc_directive] = ACTIONS(1227), - [anon_sym_LPAREN2] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym___extension__] = ACTIONS(1227), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym___attribute__] = ACTIONS(1227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), - [anon_sym___declspec] = ACTIONS(1227), - [anon_sym___cdecl] = ACTIONS(1227), - [anon_sym___clrcall] = ACTIONS(1227), - [anon_sym___stdcall] = ACTIONS(1227), - [anon_sym___fastcall] = ACTIONS(1227), - [anon_sym___thiscall] = ACTIONS(1227), - [anon_sym___vectorcall] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_signed] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [anon_sym___inline] = ACTIONS(1227), - [anon_sym___inline__] = ACTIONS(1227), - [anon_sym___forceinline] = ACTIONS(1227), - [anon_sym_thread_local] = ACTIONS(1227), - [anon_sym___thread] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_constexpr] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym___restrict__] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym__Noreturn] = ACTIONS(1227), - [anon_sym_noreturn] = ACTIONS(1227), - [anon_sym_alignas] = ACTIONS(1227), - [anon_sym__Alignas] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym___try] = ACTIONS(1227), - [anon_sym___leave] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1229), - [anon_sym_sizeof] = ACTIONS(1227), - [anon_sym___alignof__] = ACTIONS(1227), - [anon_sym___alignof] = ACTIONS(1227), - [anon_sym__alignof] = ACTIONS(1227), - [anon_sym_alignof] = ACTIONS(1227), - [anon_sym__Alignof] = ACTIONS(1227), - [anon_sym_offsetof] = ACTIONS(1227), - [anon_sym__Generic] = ACTIONS(1227), - [anon_sym_asm] = ACTIONS(1227), - [anon_sym___asm__] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1229), - [anon_sym_L_SQUOTE] = ACTIONS(1229), - [anon_sym_u_SQUOTE] = ACTIONS(1229), - [anon_sym_U_SQUOTE] = ACTIONS(1229), - [anon_sym_u8_SQUOTE] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1229), - [anon_sym_L_DQUOTE] = ACTIONS(1229), - [anon_sym_u_DQUOTE] = ACTIONS(1229), - [anon_sym_U_DQUOTE] = ACTIONS(1229), - [anon_sym_u8_DQUOTE] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [anon_sym_NULL] = ACTIONS(1227), - [anon_sym_nullptr] = ACTIONS(1227), + [192] = { + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token2] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym__Nonnull] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), [sym_comment] = ACTIONS(3), }, - [212] = { - [sym_identifier] = ACTIONS(1231), - [aux_sym_preproc_include_token1] = ACTIONS(1231), - [aux_sym_preproc_def_token1] = ACTIONS(1231), - [aux_sym_preproc_if_token1] = ACTIONS(1231), - [aux_sym_preproc_if_token2] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), - [sym_preproc_directive] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym___extension__] = ACTIONS(1231), - [anon_sym_typedef] = ACTIONS(1231), - [anon_sym_extern] = ACTIONS(1231), - [anon_sym___attribute__] = ACTIONS(1231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), - [anon_sym___declspec] = ACTIONS(1231), - [anon_sym___cdecl] = ACTIONS(1231), - [anon_sym___clrcall] = ACTIONS(1231), - [anon_sym___stdcall] = ACTIONS(1231), - [anon_sym___fastcall] = ACTIONS(1231), - [anon_sym___thiscall] = ACTIONS(1231), - [anon_sym___vectorcall] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_signed] = ACTIONS(1231), - [anon_sym_unsigned] = ACTIONS(1231), - [anon_sym_long] = ACTIONS(1231), - [anon_sym_short] = ACTIONS(1231), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_auto] = ACTIONS(1231), - [anon_sym_register] = ACTIONS(1231), - [anon_sym_inline] = ACTIONS(1231), - [anon_sym___inline] = ACTIONS(1231), - [anon_sym___inline__] = ACTIONS(1231), - [anon_sym___forceinline] = ACTIONS(1231), - [anon_sym_thread_local] = ACTIONS(1231), - [anon_sym___thread] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_constexpr] = ACTIONS(1231), - [anon_sym_volatile] = ACTIONS(1231), - [anon_sym_restrict] = ACTIONS(1231), - [anon_sym___restrict__] = ACTIONS(1231), - [anon_sym__Atomic] = ACTIONS(1231), - [anon_sym__Noreturn] = ACTIONS(1231), - [anon_sym_noreturn] = ACTIONS(1231), - [anon_sym_alignas] = ACTIONS(1231), - [anon_sym__Alignas] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_union] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_do] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_goto] = ACTIONS(1231), - [anon_sym___try] = ACTIONS(1231), - [anon_sym___leave] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_sizeof] = ACTIONS(1231), - [anon_sym___alignof__] = ACTIONS(1231), - [anon_sym___alignof] = ACTIONS(1231), - [anon_sym__alignof] = ACTIONS(1231), - [anon_sym_alignof] = ACTIONS(1231), - [anon_sym__Alignof] = ACTIONS(1231), - [anon_sym_offsetof] = ACTIONS(1231), - [anon_sym__Generic] = ACTIONS(1231), - [anon_sym_asm] = ACTIONS(1231), - [anon_sym___asm__] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(1233), - [anon_sym_L_SQUOTE] = ACTIONS(1233), - [anon_sym_u_SQUOTE] = ACTIONS(1233), - [anon_sym_U_SQUOTE] = ACTIONS(1233), - [anon_sym_u8_SQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [anon_sym_L_DQUOTE] = ACTIONS(1233), - [anon_sym_u_DQUOTE] = ACTIONS(1233), - [anon_sym_U_DQUOTE] = ACTIONS(1233), - [anon_sym_u8_DQUOTE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_true] = ACTIONS(1231), - [sym_false] = ACTIONS(1231), - [anon_sym_NULL] = ACTIONS(1231), - [anon_sym_nullptr] = ACTIONS(1231), + [193] = { + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token2] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym__Nonnull] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + }, + [194] = { + [sym_identifier] = ACTIONS(1159), + [aux_sym_preproc_include_token1] = ACTIONS(1159), + [aux_sym_preproc_def_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token1] = ACTIONS(1159), + [aux_sym_preproc_if_token2] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), + [sym_preproc_directive] = ACTIONS(1159), + [anon_sym_LPAREN2] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym___extension__] = ACTIONS(1159), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1159), + [anon_sym___attribute__] = ACTIONS(1159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1161), + [anon_sym___declspec] = ACTIONS(1159), + [anon_sym___cdecl] = ACTIONS(1159), + [anon_sym___clrcall] = ACTIONS(1159), + [anon_sym___stdcall] = ACTIONS(1159), + [anon_sym___fastcall] = ACTIONS(1159), + [anon_sym___thiscall] = ACTIONS(1159), + [anon_sym___vectorcall] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_signed] = ACTIONS(1159), + [anon_sym_unsigned] = ACTIONS(1159), + [anon_sym_long] = ACTIONS(1159), + [anon_sym_short] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_auto] = ACTIONS(1159), + [anon_sym_register] = ACTIONS(1159), + [anon_sym_inline] = ACTIONS(1159), + [anon_sym___inline] = ACTIONS(1159), + [anon_sym___inline__] = ACTIONS(1159), + [anon_sym___forceinline] = ACTIONS(1159), + [anon_sym_thread_local] = ACTIONS(1159), + [anon_sym___thread] = ACTIONS(1159), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_constexpr] = ACTIONS(1159), + [anon_sym_volatile] = ACTIONS(1159), + [anon_sym_restrict] = ACTIONS(1159), + [anon_sym___restrict__] = ACTIONS(1159), + [anon_sym__Atomic] = ACTIONS(1159), + [anon_sym__Noreturn] = ACTIONS(1159), + [anon_sym_noreturn] = ACTIONS(1159), + [anon_sym__Nonnull] = ACTIONS(1159), + [anon_sym_alignas] = ACTIONS(1159), + [anon_sym__Alignas] = ACTIONS(1159), + [sym_primitive_type] = ACTIONS(1159), + [anon_sym_enum] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_union] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_switch] = ACTIONS(1159), + [anon_sym_case] = ACTIONS(1159), + [anon_sym_default] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_goto] = ACTIONS(1159), + [anon_sym___try] = ACTIONS(1159), + [anon_sym___leave] = ACTIONS(1159), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_sizeof] = ACTIONS(1159), + [anon_sym___alignof__] = ACTIONS(1159), + [anon_sym___alignof] = ACTIONS(1159), + [anon_sym__alignof] = ACTIONS(1159), + [anon_sym_alignof] = ACTIONS(1159), + [anon_sym__Alignof] = ACTIONS(1159), + [anon_sym_offsetof] = ACTIONS(1159), + [anon_sym__Generic] = ACTIONS(1159), + [anon_sym_asm] = ACTIONS(1159), + [anon_sym___asm__] = ACTIONS(1159), + [sym_number_literal] = ACTIONS(1161), + [anon_sym_L_SQUOTE] = ACTIONS(1161), + [anon_sym_u_SQUOTE] = ACTIONS(1161), + [anon_sym_U_SQUOTE] = ACTIONS(1161), + [anon_sym_u8_SQUOTE] = ACTIONS(1161), + [anon_sym_SQUOTE] = ACTIONS(1161), + [anon_sym_L_DQUOTE] = ACTIONS(1161), + [anon_sym_u_DQUOTE] = ACTIONS(1161), + [anon_sym_U_DQUOTE] = ACTIONS(1161), + [anon_sym_u8_DQUOTE] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_true] = ACTIONS(1159), + [sym_false] = ACTIONS(1159), + [anon_sym_NULL] = ACTIONS(1159), + [anon_sym_nullptr] = ACTIONS(1159), [sym_comment] = ACTIONS(3), }, - [213] = { + [195] = { [sym_identifier] = ACTIONS(1163), [aux_sym_preproc_include_token1] = ACTIONS(1163), [aux_sym_preproc_def_token1] = ACTIONS(1163), @@ -37811,6 +36229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1163), [anon_sym__Noreturn] = ACTIONS(1163), [anon_sym_noreturn] = ACTIONS(1163), + [anon_sym__Nonnull] = ACTIONS(1163), [anon_sym_alignas] = ACTIONS(1163), [anon_sym__Alignas] = ACTIONS(1163), [sym_primitive_type] = ACTIONS(1163), @@ -37860,107 +36279,613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1163), [sym_comment] = ACTIONS(3), }, - [214] = { - [sym_identifier] = ACTIONS(1163), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token2] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym___extension__] = ACTIONS(1163), - [anon_sym_typedef] = ACTIONS(1163), - [anon_sym_extern] = ACTIONS(1163), - [anon_sym___attribute__] = ACTIONS(1163), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1165), - [anon_sym___declspec] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_signed] = ACTIONS(1163), - [anon_sym_unsigned] = ACTIONS(1163), - [anon_sym_long] = ACTIONS(1163), - [anon_sym_short] = ACTIONS(1163), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_auto] = ACTIONS(1163), - [anon_sym_register] = ACTIONS(1163), - [anon_sym_inline] = ACTIONS(1163), - [anon_sym___inline] = ACTIONS(1163), - [anon_sym___inline__] = ACTIONS(1163), - [anon_sym___forceinline] = ACTIONS(1163), - [anon_sym_thread_local] = ACTIONS(1163), - [anon_sym___thread] = ACTIONS(1163), - [anon_sym_const] = ACTIONS(1163), - [anon_sym_constexpr] = ACTIONS(1163), - [anon_sym_volatile] = ACTIONS(1163), - [anon_sym_restrict] = ACTIONS(1163), - [anon_sym___restrict__] = ACTIONS(1163), - [anon_sym__Atomic] = ACTIONS(1163), - [anon_sym__Noreturn] = ACTIONS(1163), - [anon_sym_noreturn] = ACTIONS(1163), - [anon_sym_alignas] = ACTIONS(1163), - [anon_sym__Alignas] = ACTIONS(1163), - [sym_primitive_type] = ACTIONS(1163), - [anon_sym_enum] = ACTIONS(1163), - [anon_sym_struct] = ACTIONS(1163), - [anon_sym_union] = ACTIONS(1163), - [anon_sym_if] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_for] = ACTIONS(1163), - [anon_sym_return] = ACTIONS(1163), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1163), - [anon_sym_goto] = ACTIONS(1163), - [anon_sym___try] = ACTIONS(1163), - [anon_sym___leave] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1165), - [anon_sym_PLUS_PLUS] = ACTIONS(1165), - [anon_sym_sizeof] = ACTIONS(1163), - [anon_sym___alignof__] = ACTIONS(1163), - [anon_sym___alignof] = ACTIONS(1163), - [anon_sym__alignof] = ACTIONS(1163), - [anon_sym_alignof] = ACTIONS(1163), - [anon_sym__Alignof] = ACTIONS(1163), - [anon_sym_offsetof] = ACTIONS(1163), - [anon_sym__Generic] = ACTIONS(1163), - [anon_sym_asm] = ACTIONS(1163), - [anon_sym___asm__] = ACTIONS(1163), - [sym_number_literal] = ACTIONS(1165), - [anon_sym_L_SQUOTE] = ACTIONS(1165), - [anon_sym_u_SQUOTE] = ACTIONS(1165), - [anon_sym_U_SQUOTE] = ACTIONS(1165), - [anon_sym_u8_SQUOTE] = ACTIONS(1165), - [anon_sym_SQUOTE] = ACTIONS(1165), - [anon_sym_L_DQUOTE] = ACTIONS(1165), - [anon_sym_u_DQUOTE] = ACTIONS(1165), - [anon_sym_U_DQUOTE] = ACTIONS(1165), - [anon_sym_u8_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym_true] = ACTIONS(1163), - [sym_false] = ACTIONS(1163), - [anon_sym_NULL] = ACTIONS(1163), - [anon_sym_nullptr] = ACTIONS(1163), + [196] = { + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym__Nonnull] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + }, + [197] = { + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym__Nonnull] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(1147), + [aux_sym_preproc_def_token1] = ACTIONS(1147), + [aux_sym_preproc_if_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), + [sym_preproc_directive] = ACTIONS(1147), + [anon_sym_LPAREN2] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym___extension__] = ACTIONS(1147), + [anon_sym_typedef] = ACTIONS(1147), + [anon_sym_extern] = ACTIONS(1147), + [anon_sym___attribute__] = ACTIONS(1147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), + [anon_sym___declspec] = ACTIONS(1147), + [anon_sym___cdecl] = ACTIONS(1147), + [anon_sym___clrcall] = ACTIONS(1147), + [anon_sym___stdcall] = ACTIONS(1147), + [anon_sym___fastcall] = ACTIONS(1147), + [anon_sym___thiscall] = ACTIONS(1147), + [anon_sym___vectorcall] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [anon_sym_static] = ACTIONS(1147), + [anon_sym_auto] = ACTIONS(1147), + [anon_sym_register] = ACTIONS(1147), + [anon_sym_inline] = ACTIONS(1147), + [anon_sym___inline] = ACTIONS(1147), + [anon_sym___inline__] = ACTIONS(1147), + [anon_sym___forceinline] = ACTIONS(1147), + [anon_sym_thread_local] = ACTIONS(1147), + [anon_sym___thread] = ACTIONS(1147), + [anon_sym_const] = ACTIONS(1147), + [anon_sym_constexpr] = ACTIONS(1147), + [anon_sym_volatile] = ACTIONS(1147), + [anon_sym_restrict] = ACTIONS(1147), + [anon_sym___restrict__] = ACTIONS(1147), + [anon_sym__Atomic] = ACTIONS(1147), + [anon_sym__Noreturn] = ACTIONS(1147), + [anon_sym_noreturn] = ACTIONS(1147), + [anon_sym__Nonnull] = ACTIONS(1147), + [anon_sym_alignas] = ACTIONS(1147), + [anon_sym__Alignas] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1147), + [anon_sym_enum] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_union] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_switch] = ACTIONS(1147), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_default] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_do] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_goto] = ACTIONS(1147), + [anon_sym___try] = ACTIONS(1147), + [anon_sym___leave] = ACTIONS(1147), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_sizeof] = ACTIONS(1147), + [anon_sym___alignof__] = ACTIONS(1147), + [anon_sym___alignof] = ACTIONS(1147), + [anon_sym__alignof] = ACTIONS(1147), + [anon_sym_alignof] = ACTIONS(1147), + [anon_sym__Alignof] = ACTIONS(1147), + [anon_sym_offsetof] = ACTIONS(1147), + [anon_sym__Generic] = ACTIONS(1147), + [anon_sym_asm] = ACTIONS(1147), + [anon_sym___asm__] = ACTIONS(1147), + [sym_number_literal] = ACTIONS(1149), + [anon_sym_L_SQUOTE] = ACTIONS(1149), + [anon_sym_u_SQUOTE] = ACTIONS(1149), + [anon_sym_U_SQUOTE] = ACTIONS(1149), + [anon_sym_u8_SQUOTE] = ACTIONS(1149), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_L_DQUOTE] = ACTIONS(1149), + [anon_sym_u_DQUOTE] = ACTIONS(1149), + [anon_sym_U_DQUOTE] = ACTIONS(1149), + [anon_sym_u8_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [anon_sym_NULL] = ACTIONS(1147), + [anon_sym_nullptr] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + }, + [199] = { + [sym_identifier] = ACTIONS(1171), + [aux_sym_preproc_include_token1] = ACTIONS(1171), + [aux_sym_preproc_def_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token1] = ACTIONS(1171), + [aux_sym_preproc_if_token2] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), + [sym_preproc_directive] = ACTIONS(1171), + [anon_sym_LPAREN2] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym___extension__] = ACTIONS(1171), + [anon_sym_typedef] = ACTIONS(1171), + [anon_sym_extern] = ACTIONS(1171), + [anon_sym___attribute__] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), + [anon_sym___declspec] = ACTIONS(1171), + [anon_sym___cdecl] = ACTIONS(1171), + [anon_sym___clrcall] = ACTIONS(1171), + [anon_sym___stdcall] = ACTIONS(1171), + [anon_sym___fastcall] = ACTIONS(1171), + [anon_sym___thiscall] = ACTIONS(1171), + [anon_sym___vectorcall] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_signed] = ACTIONS(1171), + [anon_sym_unsigned] = ACTIONS(1171), + [anon_sym_long] = ACTIONS(1171), + [anon_sym_short] = ACTIONS(1171), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_auto] = ACTIONS(1171), + [anon_sym_register] = ACTIONS(1171), + [anon_sym_inline] = ACTIONS(1171), + [anon_sym___inline] = ACTIONS(1171), + [anon_sym___inline__] = ACTIONS(1171), + [anon_sym___forceinline] = ACTIONS(1171), + [anon_sym_thread_local] = ACTIONS(1171), + [anon_sym___thread] = ACTIONS(1171), + [anon_sym_const] = ACTIONS(1171), + [anon_sym_constexpr] = ACTIONS(1171), + [anon_sym_volatile] = ACTIONS(1171), + [anon_sym_restrict] = ACTIONS(1171), + [anon_sym___restrict__] = ACTIONS(1171), + [anon_sym__Atomic] = ACTIONS(1171), + [anon_sym__Noreturn] = ACTIONS(1171), + [anon_sym_noreturn] = ACTIONS(1171), + [anon_sym__Nonnull] = ACTIONS(1171), + [anon_sym_alignas] = ACTIONS(1171), + [anon_sym__Alignas] = ACTIONS(1171), + [sym_primitive_type] = ACTIONS(1171), + [anon_sym_enum] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_union] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_switch] = ACTIONS(1171), + [anon_sym_case] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_goto] = ACTIONS(1171), + [anon_sym___try] = ACTIONS(1171), + [anon_sym___leave] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_sizeof] = ACTIONS(1171), + [anon_sym___alignof__] = ACTIONS(1171), + [anon_sym___alignof] = ACTIONS(1171), + [anon_sym__alignof] = ACTIONS(1171), + [anon_sym_alignof] = ACTIONS(1171), + [anon_sym__Alignof] = ACTIONS(1171), + [anon_sym_offsetof] = ACTIONS(1171), + [anon_sym__Generic] = ACTIONS(1171), + [anon_sym_asm] = ACTIONS(1171), + [anon_sym___asm__] = ACTIONS(1171), + [sym_number_literal] = ACTIONS(1173), + [anon_sym_L_SQUOTE] = ACTIONS(1173), + [anon_sym_u_SQUOTE] = ACTIONS(1173), + [anon_sym_U_SQUOTE] = ACTIONS(1173), + [anon_sym_u8_SQUOTE] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1173), + [anon_sym_L_DQUOTE] = ACTIONS(1173), + [anon_sym_u_DQUOTE] = ACTIONS(1173), + [anon_sym_U_DQUOTE] = ACTIONS(1173), + [anon_sym_u8_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_true] = ACTIONS(1171), + [sym_false] = ACTIONS(1171), + [anon_sym_NULL] = ACTIONS(1171), + [anon_sym_nullptr] = ACTIONS(1171), + [sym_comment] = ACTIONS(3), + }, + [200] = { + [sym_identifier] = ACTIONS(1175), + [aux_sym_preproc_include_token1] = ACTIONS(1175), + [aux_sym_preproc_def_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token1] = ACTIONS(1175), + [aux_sym_preproc_if_token2] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), + [sym_preproc_directive] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym___extension__] = ACTIONS(1175), + [anon_sym_typedef] = ACTIONS(1175), + [anon_sym_extern] = ACTIONS(1175), + [anon_sym___attribute__] = ACTIONS(1175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1175), + [anon_sym___cdecl] = ACTIONS(1175), + [anon_sym___clrcall] = ACTIONS(1175), + [anon_sym___stdcall] = ACTIONS(1175), + [anon_sym___fastcall] = ACTIONS(1175), + [anon_sym___thiscall] = ACTIONS(1175), + [anon_sym___vectorcall] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1175), + [anon_sym_unsigned] = ACTIONS(1175), + [anon_sym_long] = ACTIONS(1175), + [anon_sym_short] = ACTIONS(1175), + [anon_sym_static] = ACTIONS(1175), + [anon_sym_auto] = ACTIONS(1175), + [anon_sym_register] = ACTIONS(1175), + [anon_sym_inline] = ACTIONS(1175), + [anon_sym___inline] = ACTIONS(1175), + [anon_sym___inline__] = ACTIONS(1175), + [anon_sym___forceinline] = ACTIONS(1175), + [anon_sym_thread_local] = ACTIONS(1175), + [anon_sym___thread] = ACTIONS(1175), + [anon_sym_const] = ACTIONS(1175), + [anon_sym_constexpr] = ACTIONS(1175), + [anon_sym_volatile] = ACTIONS(1175), + [anon_sym_restrict] = ACTIONS(1175), + [anon_sym___restrict__] = ACTIONS(1175), + [anon_sym__Atomic] = ACTIONS(1175), + [anon_sym__Noreturn] = ACTIONS(1175), + [anon_sym_noreturn] = ACTIONS(1175), + [anon_sym__Nonnull] = ACTIONS(1175), + [anon_sym_alignas] = ACTIONS(1175), + [anon_sym__Alignas] = ACTIONS(1175), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_union] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(1175), + [anon_sym_default] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_goto] = ACTIONS(1175), + [anon_sym___try] = ACTIONS(1175), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_sizeof] = ACTIONS(1175), + [anon_sym___alignof__] = ACTIONS(1175), + [anon_sym___alignof] = ACTIONS(1175), + [anon_sym__alignof] = ACTIONS(1175), + [anon_sym_alignof] = ACTIONS(1175), + [anon_sym__Alignof] = ACTIONS(1175), + [anon_sym_offsetof] = ACTIONS(1175), + [anon_sym__Generic] = ACTIONS(1175), + [anon_sym_asm] = ACTIONS(1175), + [anon_sym___asm__] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1177), + [anon_sym_L_SQUOTE] = ACTIONS(1177), + [anon_sym_u_SQUOTE] = ACTIONS(1177), + [anon_sym_U_SQUOTE] = ACTIONS(1177), + [anon_sym_u8_SQUOTE] = ACTIONS(1177), + [anon_sym_SQUOTE] = ACTIONS(1177), + [anon_sym_L_DQUOTE] = ACTIONS(1177), + [anon_sym_u_DQUOTE] = ACTIONS(1177), + [anon_sym_U_DQUOTE] = ACTIONS(1177), + [anon_sym_u8_DQUOTE] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_true] = ACTIONS(1175), + [sym_false] = ACTIONS(1175), + [anon_sym_NULL] = ACTIONS(1175), + [anon_sym_nullptr] = ACTIONS(1175), + [sym_comment] = ACTIONS(3), + }, + [201] = { + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token2] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), + [sym_preproc_directive] = ACTIONS(1179), + [anon_sym_LPAREN2] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym___extension__] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym___attribute__] = ACTIONS(1179), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym___declspec] = ACTIONS(1179), + [anon_sym___cdecl] = ACTIONS(1179), + [anon_sym___clrcall] = ACTIONS(1179), + [anon_sym___stdcall] = ACTIONS(1179), + [anon_sym___fastcall] = ACTIONS(1179), + [anon_sym___thiscall] = ACTIONS(1179), + [anon_sym___vectorcall] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_signed] = ACTIONS(1179), + [anon_sym_unsigned] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_auto] = ACTIONS(1179), + [anon_sym_register] = ACTIONS(1179), + [anon_sym_inline] = ACTIONS(1179), + [anon_sym___inline] = ACTIONS(1179), + [anon_sym___inline__] = ACTIONS(1179), + [anon_sym___forceinline] = ACTIONS(1179), + [anon_sym_thread_local] = ACTIONS(1179), + [anon_sym___thread] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_constexpr] = ACTIONS(1179), + [anon_sym_volatile] = ACTIONS(1179), + [anon_sym_restrict] = ACTIONS(1179), + [anon_sym___restrict__] = ACTIONS(1179), + [anon_sym__Atomic] = ACTIONS(1179), + [anon_sym__Noreturn] = ACTIONS(1179), + [anon_sym_noreturn] = ACTIONS(1179), + [anon_sym__Nonnull] = ACTIONS(1179), + [anon_sym_alignas] = ACTIONS(1179), + [anon_sym__Alignas] = ACTIONS(1179), + [sym_primitive_type] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_goto] = ACTIONS(1179), + [anon_sym___try] = ACTIONS(1179), + [anon_sym___leave] = ACTIONS(1179), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_sizeof] = ACTIONS(1179), + [anon_sym___alignof__] = ACTIONS(1179), + [anon_sym___alignof] = ACTIONS(1179), + [anon_sym__alignof] = ACTIONS(1179), + [anon_sym_alignof] = ACTIONS(1179), + [anon_sym__Alignof] = ACTIONS(1179), + [anon_sym_offsetof] = ACTIONS(1179), + [anon_sym__Generic] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym___asm__] = ACTIONS(1179), + [sym_number_literal] = ACTIONS(1181), + [anon_sym_L_SQUOTE] = ACTIONS(1181), + [anon_sym_u_SQUOTE] = ACTIONS(1181), + [anon_sym_U_SQUOTE] = ACTIONS(1181), + [anon_sym_u8_SQUOTE] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_L_DQUOTE] = ACTIONS(1181), + [anon_sym_u_DQUOTE] = ACTIONS(1181), + [anon_sym_U_DQUOTE] = ACTIONS(1181), + [anon_sym_u8_DQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_true] = ACTIONS(1179), + [sym_false] = ACTIONS(1179), + [anon_sym_NULL] = ACTIONS(1179), + [anon_sym_nullptr] = ACTIONS(1179), [sym_comment] = ACTIONS(3), }, - [215] = { + [202] = { [sym_identifier] = ACTIONS(1183), [aux_sym_preproc_include_token1] = ACTIONS(1183), [aux_sym_preproc_def_token1] = ACTIONS(1183), @@ -38011,6 +36936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1183), [anon_sym__Noreturn] = ACTIONS(1183), [anon_sym_noreturn] = ACTIONS(1183), + [anon_sym__Nonnull] = ACTIONS(1183), [anon_sym_alignas] = ACTIONS(1183), [anon_sym__Alignas] = ACTIONS(1183), [sym_primitive_type] = ACTIONS(1183), @@ -38060,307 +36986,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1183), [sym_comment] = ACTIONS(3), }, - [216] = { - [sym_identifier] = ACTIONS(1183), - [aux_sym_preproc_include_token1] = ACTIONS(1183), - [aux_sym_preproc_def_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token2] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym___extension__] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym___attribute__] = ACTIONS(1183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), - [anon_sym___declspec] = ACTIONS(1183), - [anon_sym___cdecl] = ACTIONS(1183), - [anon_sym___clrcall] = ACTIONS(1183), - [anon_sym___stdcall] = ACTIONS(1183), - [anon_sym___fastcall] = ACTIONS(1183), - [anon_sym___thiscall] = ACTIONS(1183), - [anon_sym___vectorcall] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_inline] = ACTIONS(1183), - [anon_sym___inline] = ACTIONS(1183), - [anon_sym___inline__] = ACTIONS(1183), - [anon_sym___forceinline] = ACTIONS(1183), - [anon_sym_thread_local] = ACTIONS(1183), - [anon_sym___thread] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_constexpr] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym___restrict__] = ACTIONS(1183), - [anon_sym__Atomic] = ACTIONS(1183), - [anon_sym__Noreturn] = ACTIONS(1183), - [anon_sym_noreturn] = ACTIONS(1183), - [anon_sym_alignas] = ACTIONS(1183), - [anon_sym__Alignas] = ACTIONS(1183), - [sym_primitive_type] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym___try] = ACTIONS(1183), - [anon_sym___leave] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym___alignof__] = ACTIONS(1183), - [anon_sym___alignof] = ACTIONS(1183), - [anon_sym__alignof] = ACTIONS(1183), - [anon_sym_alignof] = ACTIONS(1183), - [anon_sym__Alignof] = ACTIONS(1183), - [anon_sym_offsetof] = ACTIONS(1183), - [anon_sym__Generic] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym___asm__] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1185), - [anon_sym_L_SQUOTE] = ACTIONS(1185), - [anon_sym_u_SQUOTE] = ACTIONS(1185), - [anon_sym_U_SQUOTE] = ACTIONS(1185), - [anon_sym_u8_SQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [anon_sym_L_DQUOTE] = ACTIONS(1185), - [anon_sym_u_DQUOTE] = ACTIONS(1185), - [anon_sym_U_DQUOTE] = ACTIONS(1185), - [anon_sym_u8_DQUOTE] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [anon_sym_NULL] = ACTIONS(1183), - [anon_sym_nullptr] = ACTIONS(1183), + [203] = { + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token2] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym__Nonnull] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), + [sym_comment] = ACTIONS(3), + }, + [204] = { + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token2] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym__Nonnull] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), + [sym_comment] = ACTIONS(3), + }, + [205] = { + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1191), + [aux_sym_preproc_def_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token1] = ACTIONS(1191), + [aux_sym_preproc_if_token2] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1191), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1191), + [sym_preproc_directive] = ACTIONS(1191), + [anon_sym_LPAREN2] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym___extension__] = ACTIONS(1191), + [anon_sym_typedef] = ACTIONS(1191), + [anon_sym_extern] = ACTIONS(1191), + [anon_sym___attribute__] = ACTIONS(1191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1193), + [anon_sym___declspec] = ACTIONS(1191), + [anon_sym___cdecl] = ACTIONS(1191), + [anon_sym___clrcall] = ACTIONS(1191), + [anon_sym___stdcall] = ACTIONS(1191), + [anon_sym___fastcall] = ACTIONS(1191), + [anon_sym___thiscall] = ACTIONS(1191), + [anon_sym___vectorcall] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_signed] = ACTIONS(1191), + [anon_sym_unsigned] = ACTIONS(1191), + [anon_sym_long] = ACTIONS(1191), + [anon_sym_short] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_auto] = ACTIONS(1191), + [anon_sym_register] = ACTIONS(1191), + [anon_sym_inline] = ACTIONS(1191), + [anon_sym___inline] = ACTIONS(1191), + [anon_sym___inline__] = ACTIONS(1191), + [anon_sym___forceinline] = ACTIONS(1191), + [anon_sym_thread_local] = ACTIONS(1191), + [anon_sym___thread] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1191), + [anon_sym_constexpr] = ACTIONS(1191), + [anon_sym_volatile] = ACTIONS(1191), + [anon_sym_restrict] = ACTIONS(1191), + [anon_sym___restrict__] = ACTIONS(1191), + [anon_sym__Atomic] = ACTIONS(1191), + [anon_sym__Noreturn] = ACTIONS(1191), + [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym__Nonnull] = ACTIONS(1191), + [anon_sym_alignas] = ACTIONS(1191), + [anon_sym__Alignas] = ACTIONS(1191), + [sym_primitive_type] = ACTIONS(1191), + [anon_sym_enum] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_union] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_switch] = ACTIONS(1191), + [anon_sym_case] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_do] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_goto] = ACTIONS(1191), + [anon_sym___try] = ACTIONS(1191), + [anon_sym___leave] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_sizeof] = ACTIONS(1191), + [anon_sym___alignof__] = ACTIONS(1191), + [anon_sym___alignof] = ACTIONS(1191), + [anon_sym__alignof] = ACTIONS(1191), + [anon_sym_alignof] = ACTIONS(1191), + [anon_sym__Alignof] = ACTIONS(1191), + [anon_sym_offsetof] = ACTIONS(1191), + [anon_sym__Generic] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1191), + [anon_sym___asm__] = ACTIONS(1191), + [sym_number_literal] = ACTIONS(1193), + [anon_sym_L_SQUOTE] = ACTIONS(1193), + [anon_sym_u_SQUOTE] = ACTIONS(1193), + [anon_sym_U_SQUOTE] = ACTIONS(1193), + [anon_sym_u8_SQUOTE] = ACTIONS(1193), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_L_DQUOTE] = ACTIONS(1193), + [anon_sym_u_DQUOTE] = ACTIONS(1193), + [anon_sym_U_DQUOTE] = ACTIONS(1193), + [anon_sym_u8_DQUOTE] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_true] = ACTIONS(1191), + [sym_false] = ACTIONS(1191), + [anon_sym_NULL] = ACTIONS(1191), + [anon_sym_nullptr] = ACTIONS(1191), + [sym_comment] = ACTIONS(3), + }, + [206] = { + [ts_builtin_sym_end] = ACTIONS(1153), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1151), + [aux_sym_preproc_def_token1] = ACTIONS(1151), + [aux_sym_preproc_if_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1151), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1151), + [sym_preproc_directive] = ACTIONS(1151), + [anon_sym_LPAREN2] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym___attribute__] = ACTIONS(1151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1153), + [anon_sym___declspec] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1151), + [anon_sym___clrcall] = ACTIONS(1151), + [anon_sym___stdcall] = ACTIONS(1151), + [anon_sym___fastcall] = ACTIONS(1151), + [anon_sym___thiscall] = ACTIONS(1151), + [anon_sym___vectorcall] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_signed] = ACTIONS(1151), + [anon_sym_unsigned] = ACTIONS(1151), + [anon_sym_long] = ACTIONS(1151), + [anon_sym_short] = ACTIONS(1151), + [anon_sym_static] = ACTIONS(1151), + [anon_sym_auto] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_inline] = ACTIONS(1151), + [anon_sym___inline] = ACTIONS(1151), + [anon_sym___inline__] = ACTIONS(1151), + [anon_sym___forceinline] = ACTIONS(1151), + [anon_sym_thread_local] = ACTIONS(1151), + [anon_sym___thread] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_constexpr] = ACTIONS(1151), + [anon_sym_volatile] = ACTIONS(1151), + [anon_sym_restrict] = ACTIONS(1151), + [anon_sym___restrict__] = ACTIONS(1151), + [anon_sym__Atomic] = ACTIONS(1151), + [anon_sym__Noreturn] = ACTIONS(1151), + [anon_sym_noreturn] = ACTIONS(1151), + [anon_sym__Nonnull] = ACTIONS(1151), + [anon_sym_alignas] = ACTIONS(1151), + [anon_sym__Alignas] = ACTIONS(1151), + [sym_primitive_type] = ACTIONS(1151), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_union] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_switch] = ACTIONS(1151), + [anon_sym_case] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_goto] = ACTIONS(1151), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_sizeof] = ACTIONS(1151), + [anon_sym___alignof__] = ACTIONS(1151), + [anon_sym___alignof] = ACTIONS(1151), + [anon_sym__alignof] = ACTIONS(1151), + [anon_sym_alignof] = ACTIONS(1151), + [anon_sym__Alignof] = ACTIONS(1151), + [anon_sym_offsetof] = ACTIONS(1151), + [anon_sym__Generic] = ACTIONS(1151), + [anon_sym_asm] = ACTIONS(1151), + [anon_sym___asm__] = ACTIONS(1151), + [sym_number_literal] = ACTIONS(1153), + [anon_sym_L_SQUOTE] = ACTIONS(1153), + [anon_sym_u_SQUOTE] = ACTIONS(1153), + [anon_sym_U_SQUOTE] = ACTIONS(1153), + [anon_sym_u8_SQUOTE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1153), + [anon_sym_L_DQUOTE] = ACTIONS(1153), + [anon_sym_u_DQUOTE] = ACTIONS(1153), + [anon_sym_U_DQUOTE] = ACTIONS(1153), + [anon_sym_u8_DQUOTE] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_true] = ACTIONS(1151), + [sym_false] = ACTIONS(1151), + [anon_sym_NULL] = ACTIONS(1151), + [anon_sym_nullptr] = ACTIONS(1151), + [sym_comment] = ACTIONS(3), + }, + [207] = { + [sym_identifier] = ACTIONS(1203), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token2] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym___extension__] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1203), + [anon_sym_extern] = ACTIONS(1203), + [anon_sym___attribute__] = ACTIONS(1203), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1203), + [anon_sym___cdecl] = ACTIONS(1203), + [anon_sym___clrcall] = ACTIONS(1203), + [anon_sym___stdcall] = ACTIONS(1203), + [anon_sym___fastcall] = ACTIONS(1203), + [anon_sym___thiscall] = ACTIONS(1203), + [anon_sym___vectorcall] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1203), + [anon_sym_unsigned] = ACTIONS(1203), + [anon_sym_long] = ACTIONS(1203), + [anon_sym_short] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1203), + [anon_sym_auto] = ACTIONS(1203), + [anon_sym_register] = ACTIONS(1203), + [anon_sym_inline] = ACTIONS(1203), + [anon_sym___inline] = ACTIONS(1203), + [anon_sym___inline__] = ACTIONS(1203), + [anon_sym___forceinline] = ACTIONS(1203), + [anon_sym_thread_local] = ACTIONS(1203), + [anon_sym___thread] = ACTIONS(1203), + [anon_sym_const] = ACTIONS(1203), + [anon_sym_constexpr] = ACTIONS(1203), + [anon_sym_volatile] = ACTIONS(1203), + [anon_sym_restrict] = ACTIONS(1203), + [anon_sym___restrict__] = ACTIONS(1203), + [anon_sym__Atomic] = ACTIONS(1203), + [anon_sym__Noreturn] = ACTIONS(1203), + [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym__Nonnull] = ACTIONS(1203), + [anon_sym_alignas] = ACTIONS(1203), + [anon_sym__Alignas] = ACTIONS(1203), + [sym_primitive_type] = ACTIONS(1203), + [anon_sym_enum] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_union] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_switch] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_goto] = ACTIONS(1203), + [anon_sym___try] = ACTIONS(1203), + [anon_sym___leave] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1203), + [anon_sym___alignof__] = ACTIONS(1203), + [anon_sym___alignof] = ACTIONS(1203), + [anon_sym__alignof] = ACTIONS(1203), + [anon_sym_alignof] = ACTIONS(1203), + [anon_sym__Alignof] = ACTIONS(1203), + [anon_sym_offsetof] = ACTIONS(1203), + [anon_sym__Generic] = ACTIONS(1203), + [anon_sym_asm] = ACTIONS(1203), + [anon_sym___asm__] = ACTIONS(1203), + [sym_number_literal] = ACTIONS(1205), + [anon_sym_L_SQUOTE] = ACTIONS(1205), + [anon_sym_u_SQUOTE] = ACTIONS(1205), + [anon_sym_U_SQUOTE] = ACTIONS(1205), + [anon_sym_u8_SQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1205), + [anon_sym_L_DQUOTE] = ACTIONS(1205), + [anon_sym_u_DQUOTE] = ACTIONS(1205), + [anon_sym_U_DQUOTE] = ACTIONS(1205), + [anon_sym_u8_DQUOTE] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_true] = ACTIONS(1203), + [sym_false] = ACTIONS(1203), + [anon_sym_NULL] = ACTIONS(1203), + [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [217] = { - [sym_identifier] = ACTIONS(1187), - [aux_sym_preproc_include_token1] = ACTIONS(1187), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token2] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1187), - [anon_sym_LPAREN2] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym___extension__] = ACTIONS(1187), - [anon_sym_typedef] = ACTIONS(1187), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym___attribute__] = ACTIONS(1187), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), - [anon_sym___declspec] = ACTIONS(1187), - [anon_sym___cdecl] = ACTIONS(1187), - [anon_sym___clrcall] = ACTIONS(1187), - [anon_sym___stdcall] = ACTIONS(1187), - [anon_sym___fastcall] = ACTIONS(1187), - [anon_sym___thiscall] = ACTIONS(1187), - [anon_sym___vectorcall] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_signed] = ACTIONS(1187), - [anon_sym_unsigned] = ACTIONS(1187), - [anon_sym_long] = ACTIONS(1187), - [anon_sym_short] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_auto] = ACTIONS(1187), - [anon_sym_register] = ACTIONS(1187), - [anon_sym_inline] = ACTIONS(1187), - [anon_sym___inline] = ACTIONS(1187), - [anon_sym___inline__] = ACTIONS(1187), - [anon_sym___forceinline] = ACTIONS(1187), - [anon_sym_thread_local] = ACTIONS(1187), - [anon_sym___thread] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_constexpr] = ACTIONS(1187), - [anon_sym_volatile] = ACTIONS(1187), - [anon_sym_restrict] = ACTIONS(1187), - [anon_sym___restrict__] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(1187), - [anon_sym__Noreturn] = ACTIONS(1187), - [anon_sym_noreturn] = ACTIONS(1187), - [anon_sym_alignas] = ACTIONS(1187), - [anon_sym__Alignas] = ACTIONS(1187), - [sym_primitive_type] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_goto] = ACTIONS(1187), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1187), - [anon_sym___alignof__] = ACTIONS(1187), - [anon_sym___alignof] = ACTIONS(1187), - [anon_sym__alignof] = ACTIONS(1187), - [anon_sym_alignof] = ACTIONS(1187), - [anon_sym__Alignof] = ACTIONS(1187), - [anon_sym_offsetof] = ACTIONS(1187), - [anon_sym__Generic] = ACTIONS(1187), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym___asm__] = ACTIONS(1187), - [sym_number_literal] = ACTIONS(1189), - [anon_sym_L_SQUOTE] = ACTIONS(1189), - [anon_sym_u_SQUOTE] = ACTIONS(1189), - [anon_sym_U_SQUOTE] = ACTIONS(1189), - [anon_sym_u8_SQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_L_DQUOTE] = ACTIONS(1189), - [anon_sym_u_DQUOTE] = ACTIONS(1189), - [anon_sym_U_DQUOTE] = ACTIONS(1189), - [anon_sym_u8_DQUOTE] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [anon_sym_NULL] = ACTIONS(1187), - [anon_sym_nullptr] = ACTIONS(1187), + [208] = { + [sym_identifier] = ACTIONS(1207), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token2] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_LPAREN2] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym___attribute__] = ACTIONS(1207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1207), + [anon_sym___cdecl] = ACTIONS(1207), + [anon_sym___clrcall] = ACTIONS(1207), + [anon_sym___stdcall] = ACTIONS(1207), + [anon_sym___fastcall] = ACTIONS(1207), + [anon_sym___thiscall] = ACTIONS(1207), + [anon_sym___vectorcall] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym___inline] = ACTIONS(1207), + [anon_sym___inline__] = ACTIONS(1207), + [anon_sym___forceinline] = ACTIONS(1207), + [anon_sym_thread_local] = ACTIONS(1207), + [anon_sym___thread] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_constexpr] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym___restrict__] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym__Noreturn] = ACTIONS(1207), + [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym__Nonnull] = ACTIONS(1207), + [anon_sym_alignas] = ACTIONS(1207), + [anon_sym__Alignas] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_sizeof] = ACTIONS(1207), + [anon_sym___alignof__] = ACTIONS(1207), + [anon_sym___alignof] = ACTIONS(1207), + [anon_sym__alignof] = ACTIONS(1207), + [anon_sym_alignof] = ACTIONS(1207), + [anon_sym__Alignof] = ACTIONS(1207), + [anon_sym_offsetof] = ACTIONS(1207), + [anon_sym__Generic] = ACTIONS(1207), + [anon_sym_asm] = ACTIONS(1207), + [anon_sym___asm__] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1209), + [anon_sym_L_SQUOTE] = ACTIONS(1209), + [anon_sym_u_SQUOTE] = ACTIONS(1209), + [anon_sym_U_SQUOTE] = ACTIONS(1209), + [anon_sym_u8_SQUOTE] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1209), + [anon_sym_L_DQUOTE] = ACTIONS(1209), + [anon_sym_u_DQUOTE] = ACTIONS(1209), + [anon_sym_U_DQUOTE] = ACTIONS(1209), + [anon_sym_u8_DQUOTE] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [anon_sym_NULL] = ACTIONS(1207), + [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(1187), - [aux_sym_preproc_include_token1] = ACTIONS(1187), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token2] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1187), - [anon_sym_LPAREN2] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym___extension__] = ACTIONS(1187), - [anon_sym_typedef] = ACTIONS(1187), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym___attribute__] = ACTIONS(1187), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), - [anon_sym___declspec] = ACTIONS(1187), - [anon_sym___cdecl] = ACTIONS(1187), - [anon_sym___clrcall] = ACTIONS(1187), - [anon_sym___stdcall] = ACTIONS(1187), - [anon_sym___fastcall] = ACTIONS(1187), - [anon_sym___thiscall] = ACTIONS(1187), - [anon_sym___vectorcall] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_signed] = ACTIONS(1187), - [anon_sym_unsigned] = ACTIONS(1187), - [anon_sym_long] = ACTIONS(1187), - [anon_sym_short] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_auto] = ACTIONS(1187), - [anon_sym_register] = ACTIONS(1187), - [anon_sym_inline] = ACTIONS(1187), - [anon_sym___inline] = ACTIONS(1187), - [anon_sym___inline__] = ACTIONS(1187), - [anon_sym___forceinline] = ACTIONS(1187), - [anon_sym_thread_local] = ACTIONS(1187), - [anon_sym___thread] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_constexpr] = ACTIONS(1187), - [anon_sym_volatile] = ACTIONS(1187), - [anon_sym_restrict] = ACTIONS(1187), - [anon_sym___restrict__] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(1187), - [anon_sym__Noreturn] = ACTIONS(1187), - [anon_sym_noreturn] = ACTIONS(1187), - [anon_sym_alignas] = ACTIONS(1187), - [anon_sym__Alignas] = ACTIONS(1187), - [sym_primitive_type] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_goto] = ACTIONS(1187), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1187), - [anon_sym___alignof__] = ACTIONS(1187), - [anon_sym___alignof] = ACTIONS(1187), - [anon_sym__alignof] = ACTIONS(1187), - [anon_sym_alignof] = ACTIONS(1187), - [anon_sym__Alignof] = ACTIONS(1187), - [anon_sym_offsetof] = ACTIONS(1187), - [anon_sym__Generic] = ACTIONS(1187), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym___asm__] = ACTIONS(1187), - [sym_number_literal] = ACTIONS(1189), - [anon_sym_L_SQUOTE] = ACTIONS(1189), - [anon_sym_u_SQUOTE] = ACTIONS(1189), - [anon_sym_U_SQUOTE] = ACTIONS(1189), - [anon_sym_u8_SQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_L_DQUOTE] = ACTIONS(1189), - [anon_sym_u_DQUOTE] = ACTIONS(1189), - [anon_sym_U_DQUOTE] = ACTIONS(1189), - [anon_sym_u8_DQUOTE] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [anon_sym_NULL] = ACTIONS(1187), - [anon_sym_nullptr] = ACTIONS(1187), + [209] = { + [sym_identifier] = ACTIONS(1211), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token2] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1211), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1211), + [sym_preproc_directive] = ACTIONS(1211), + [anon_sym_LPAREN2] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym___extension__] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1211), + [anon_sym_extern] = ACTIONS(1211), + [anon_sym___attribute__] = ACTIONS(1211), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(1211), + [anon_sym___clrcall] = ACTIONS(1211), + [anon_sym___stdcall] = ACTIONS(1211), + [anon_sym___fastcall] = ACTIONS(1211), + [anon_sym___thiscall] = ACTIONS(1211), + [anon_sym___vectorcall] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1211), + [anon_sym_unsigned] = ACTIONS(1211), + [anon_sym_long] = ACTIONS(1211), + [anon_sym_short] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1211), + [anon_sym_auto] = ACTIONS(1211), + [anon_sym_register] = ACTIONS(1211), + [anon_sym_inline] = ACTIONS(1211), + [anon_sym___inline] = ACTIONS(1211), + [anon_sym___inline__] = ACTIONS(1211), + [anon_sym___forceinline] = ACTIONS(1211), + [anon_sym_thread_local] = ACTIONS(1211), + [anon_sym___thread] = ACTIONS(1211), + [anon_sym_const] = ACTIONS(1211), + [anon_sym_constexpr] = ACTIONS(1211), + [anon_sym_volatile] = ACTIONS(1211), + [anon_sym_restrict] = ACTIONS(1211), + [anon_sym___restrict__] = ACTIONS(1211), + [anon_sym__Atomic] = ACTIONS(1211), + [anon_sym__Noreturn] = ACTIONS(1211), + [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym__Nonnull] = ACTIONS(1211), + [anon_sym_alignas] = ACTIONS(1211), + [anon_sym__Alignas] = ACTIONS(1211), + [sym_primitive_type] = ACTIONS(1211), + [anon_sym_enum] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_union] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(1211), + [anon_sym_default] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_goto] = ACTIONS(1211), + [anon_sym___try] = ACTIONS(1211), + [anon_sym___leave] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_sizeof] = ACTIONS(1211), + [anon_sym___alignof__] = ACTIONS(1211), + [anon_sym___alignof] = ACTIONS(1211), + [anon_sym__alignof] = ACTIONS(1211), + [anon_sym_alignof] = ACTIONS(1211), + [anon_sym__Alignof] = ACTIONS(1211), + [anon_sym_offsetof] = ACTIONS(1211), + [anon_sym__Generic] = ACTIONS(1211), + [anon_sym_asm] = ACTIONS(1211), + [anon_sym___asm__] = ACTIONS(1211), + [sym_number_literal] = ACTIONS(1213), + [anon_sym_L_SQUOTE] = ACTIONS(1213), + [anon_sym_u_SQUOTE] = ACTIONS(1213), + [anon_sym_U_SQUOTE] = ACTIONS(1213), + [anon_sym_u8_SQUOTE] = ACTIONS(1213), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_L_DQUOTE] = ACTIONS(1213), + [anon_sym_u_DQUOTE] = ACTIONS(1213), + [anon_sym_U_DQUOTE] = ACTIONS(1213), + [anon_sym_u8_DQUOTE] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_true] = ACTIONS(1211), + [sym_false] = ACTIONS(1211), + [anon_sym_NULL] = ACTIONS(1211), + [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, - [219] = { + [210] = { [sym_identifier] = ACTIONS(1215), [aux_sym_preproc_include_token1] = ACTIONS(1215), [aux_sym_preproc_def_token1] = ACTIONS(1215), @@ -38411,6 +37744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1215), [anon_sym__Noreturn] = ACTIONS(1215), [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym__Nonnull] = ACTIONS(1215), [anon_sym_alignas] = ACTIONS(1215), [anon_sym__Alignas] = ACTIONS(1215), [sym_primitive_type] = ACTIONS(1215), @@ -38460,7 +37794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [220] = { + [211] = { [sym_identifier] = ACTIONS(1219), [aux_sym_preproc_include_token1] = ACTIONS(1219), [aux_sym_preproc_def_token1] = ACTIONS(1219), @@ -38511,6 +37845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1219), [anon_sym__Noreturn] = ACTIONS(1219), [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym__Nonnull] = ACTIONS(1219), [anon_sym_alignas] = ACTIONS(1219), [anon_sym__Alignas] = ACTIONS(1219), [sym_primitive_type] = ACTIONS(1219), @@ -38560,107 +37895,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(1219), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token2] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), - [sym_preproc_directive] = ACTIONS(1219), - [anon_sym_LPAREN2] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym___attribute__] = ACTIONS(1219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1219), - [anon_sym___cdecl] = ACTIONS(1219), - [anon_sym___clrcall] = ACTIONS(1219), - [anon_sym___stdcall] = ACTIONS(1219), - [anon_sym___fastcall] = ACTIONS(1219), - [anon_sym___thiscall] = ACTIONS(1219), - [anon_sym___vectorcall] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1219), - [anon_sym_unsigned] = ACTIONS(1219), - [anon_sym_long] = ACTIONS(1219), - [anon_sym_short] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_auto] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_inline] = ACTIONS(1219), - [anon_sym___inline] = ACTIONS(1219), - [anon_sym___inline__] = ACTIONS(1219), - [anon_sym___forceinline] = ACTIONS(1219), - [anon_sym_thread_local] = ACTIONS(1219), - [anon_sym___thread] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_constexpr] = ACTIONS(1219), - [anon_sym_volatile] = ACTIONS(1219), - [anon_sym_restrict] = ACTIONS(1219), - [anon_sym___restrict__] = ACTIONS(1219), - [anon_sym__Atomic] = ACTIONS(1219), - [anon_sym__Noreturn] = ACTIONS(1219), - [anon_sym_noreturn] = ACTIONS(1219), - [anon_sym_alignas] = ACTIONS(1219), - [anon_sym__Alignas] = ACTIONS(1219), - [sym_primitive_type] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_union] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_goto] = ACTIONS(1219), - [anon_sym___try] = ACTIONS(1219), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1219), - [anon_sym___alignof__] = ACTIONS(1219), - [anon_sym___alignof] = ACTIONS(1219), - [anon_sym__alignof] = ACTIONS(1219), - [anon_sym_alignof] = ACTIONS(1219), - [anon_sym__Alignof] = ACTIONS(1219), - [anon_sym_offsetof] = ACTIONS(1219), - [anon_sym__Generic] = ACTIONS(1219), - [anon_sym_asm] = ACTIONS(1219), - [anon_sym___asm__] = ACTIONS(1219), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_L_SQUOTE] = ACTIONS(1221), - [anon_sym_u_SQUOTE] = ACTIONS(1221), - [anon_sym_U_SQUOTE] = ACTIONS(1221), - [anon_sym_u8_SQUOTE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_L_DQUOTE] = ACTIONS(1221), - [anon_sym_u_DQUOTE] = ACTIONS(1221), - [anon_sym_U_DQUOTE] = ACTIONS(1221), - [anon_sym_u8_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [anon_sym_NULL] = ACTIONS(1219), - [anon_sym_nullptr] = ACTIONS(1219), + [212] = { + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token2] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym__Nonnull] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, - [222] = { + [213] = { [sym_identifier] = ACTIONS(1235), [aux_sym_preproc_include_token1] = ACTIONS(1235), [aux_sym_preproc_def_token1] = ACTIONS(1235), @@ -38711,6 +38047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1235), [anon_sym__Noreturn] = ACTIONS(1235), [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym__Nonnull] = ACTIONS(1235), [anon_sym_alignas] = ACTIONS(1235), [anon_sym__Alignas] = ACTIONS(1235), [sym_primitive_type] = ACTIONS(1235), @@ -38760,807 +38097,1320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1235), [sym_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(1171), - [aux_sym_preproc_include_token1] = ACTIONS(1171), - [aux_sym_preproc_def_token1] = ACTIONS(1171), - [aux_sym_preproc_if_token1] = ACTIONS(1171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1171), - [sym_preproc_directive] = ACTIONS(1171), - [anon_sym_LPAREN2] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1171), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym___extension__] = ACTIONS(1171), - [anon_sym_typedef] = ACTIONS(1171), - [anon_sym_extern] = ACTIONS(1171), - [anon_sym___attribute__] = ACTIONS(1171), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1173), - [anon_sym___declspec] = ACTIONS(1171), - [anon_sym___cdecl] = ACTIONS(1171), - [anon_sym___clrcall] = ACTIONS(1171), - [anon_sym___stdcall] = ACTIONS(1171), - [anon_sym___fastcall] = ACTIONS(1171), - [anon_sym___thiscall] = ACTIONS(1171), - [anon_sym___vectorcall] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_signed] = ACTIONS(1171), - [anon_sym_unsigned] = ACTIONS(1171), - [anon_sym_long] = ACTIONS(1171), - [anon_sym_short] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1171), - [anon_sym_auto] = ACTIONS(1171), - [anon_sym_register] = ACTIONS(1171), - [anon_sym_inline] = ACTIONS(1171), - [anon_sym___inline] = ACTIONS(1171), - [anon_sym___inline__] = ACTIONS(1171), - [anon_sym___forceinline] = ACTIONS(1171), - [anon_sym_thread_local] = ACTIONS(1171), - [anon_sym___thread] = ACTIONS(1171), - [anon_sym_const] = ACTIONS(1171), - [anon_sym_constexpr] = ACTIONS(1171), - [anon_sym_volatile] = ACTIONS(1171), - [anon_sym_restrict] = ACTIONS(1171), - [anon_sym___restrict__] = ACTIONS(1171), - [anon_sym__Atomic] = ACTIONS(1171), - [anon_sym__Noreturn] = ACTIONS(1171), - [anon_sym_noreturn] = ACTIONS(1171), - [anon_sym_alignas] = ACTIONS(1171), - [anon_sym__Alignas] = ACTIONS(1171), - [sym_primitive_type] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1171), - [anon_sym_struct] = ACTIONS(1171), - [anon_sym_union] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1171), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_switch] = ACTIONS(1171), - [anon_sym_case] = ACTIONS(1171), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1171), - [anon_sym_for] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1171), - [anon_sym_break] = ACTIONS(1171), - [anon_sym_continue] = ACTIONS(1171), - [anon_sym_goto] = ACTIONS(1171), - [anon_sym___try] = ACTIONS(1171), - [anon_sym___leave] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1173), - [anon_sym_PLUS_PLUS] = ACTIONS(1173), - [anon_sym_sizeof] = ACTIONS(1171), - [anon_sym___alignof__] = ACTIONS(1171), - [anon_sym___alignof] = ACTIONS(1171), - [anon_sym__alignof] = ACTIONS(1171), - [anon_sym_alignof] = ACTIONS(1171), - [anon_sym__Alignof] = ACTIONS(1171), - [anon_sym_offsetof] = ACTIONS(1171), - [anon_sym__Generic] = ACTIONS(1171), - [anon_sym_asm] = ACTIONS(1171), - [anon_sym___asm__] = ACTIONS(1171), - [sym_number_literal] = ACTIONS(1173), - [anon_sym_L_SQUOTE] = ACTIONS(1173), - [anon_sym_u_SQUOTE] = ACTIONS(1173), - [anon_sym_U_SQUOTE] = ACTIONS(1173), - [anon_sym_u8_SQUOTE] = ACTIONS(1173), - [anon_sym_SQUOTE] = ACTIONS(1173), - [anon_sym_L_DQUOTE] = ACTIONS(1173), - [anon_sym_u_DQUOTE] = ACTIONS(1173), - [anon_sym_U_DQUOTE] = ACTIONS(1173), - [anon_sym_u8_DQUOTE] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1173), - [sym_true] = ACTIONS(1171), - [sym_false] = ACTIONS(1171), - [anon_sym_NULL] = ACTIONS(1171), - [anon_sym_nullptr] = ACTIONS(1171), + [214] = { + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token2] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym__Nonnull] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), + [sym_comment] = ACTIONS(3), + }, + [215] = { + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token2] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym__Nonnull] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1175), - [aux_sym_preproc_include_token1] = ACTIONS(1175), - [aux_sym_preproc_def_token1] = ACTIONS(1175), - [aux_sym_preproc_if_token1] = ACTIONS(1175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1175), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1175), - [sym_preproc_directive] = ACTIONS(1175), - [anon_sym_LPAREN2] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym___extension__] = ACTIONS(1175), - [anon_sym_typedef] = ACTIONS(1175), - [anon_sym_extern] = ACTIONS(1175), - [anon_sym___attribute__] = ACTIONS(1175), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1177), - [anon_sym___declspec] = ACTIONS(1175), - [anon_sym___cdecl] = ACTIONS(1175), - [anon_sym___clrcall] = ACTIONS(1175), - [anon_sym___stdcall] = ACTIONS(1175), - [anon_sym___fastcall] = ACTIONS(1175), - [anon_sym___thiscall] = ACTIONS(1175), - [anon_sym___vectorcall] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_signed] = ACTIONS(1175), - [anon_sym_unsigned] = ACTIONS(1175), - [anon_sym_long] = ACTIONS(1175), - [anon_sym_short] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_auto] = ACTIONS(1175), - [anon_sym_register] = ACTIONS(1175), - [anon_sym_inline] = ACTIONS(1175), - [anon_sym___inline] = ACTIONS(1175), - [anon_sym___inline__] = ACTIONS(1175), - [anon_sym___forceinline] = ACTIONS(1175), - [anon_sym_thread_local] = ACTIONS(1175), - [anon_sym___thread] = ACTIONS(1175), - [anon_sym_const] = ACTIONS(1175), - [anon_sym_constexpr] = ACTIONS(1175), - [anon_sym_volatile] = ACTIONS(1175), - [anon_sym_restrict] = ACTIONS(1175), - [anon_sym___restrict__] = ACTIONS(1175), - [anon_sym__Atomic] = ACTIONS(1175), - [anon_sym__Noreturn] = ACTIONS(1175), - [anon_sym_noreturn] = ACTIONS(1175), - [anon_sym_alignas] = ACTIONS(1175), - [anon_sym__Alignas] = ACTIONS(1175), - [sym_primitive_type] = ACTIONS(1175), - [anon_sym_enum] = ACTIONS(1175), - [anon_sym_struct] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(1175), - [anon_sym_if] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_switch] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1175), - [anon_sym_default] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1175), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_for] = ACTIONS(1175), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1175), - [anon_sym_continue] = ACTIONS(1175), - [anon_sym_goto] = ACTIONS(1175), - [anon_sym___try] = ACTIONS(1175), - [anon_sym___leave] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_sizeof] = ACTIONS(1175), - [anon_sym___alignof__] = ACTIONS(1175), - [anon_sym___alignof] = ACTIONS(1175), - [anon_sym__alignof] = ACTIONS(1175), - [anon_sym_alignof] = ACTIONS(1175), - [anon_sym__Alignof] = ACTIONS(1175), - [anon_sym_offsetof] = ACTIONS(1175), - [anon_sym__Generic] = ACTIONS(1175), - [anon_sym_asm] = ACTIONS(1175), - [anon_sym___asm__] = ACTIONS(1175), - [sym_number_literal] = ACTIONS(1177), - [anon_sym_L_SQUOTE] = ACTIONS(1177), - [anon_sym_u_SQUOTE] = ACTIONS(1177), - [anon_sym_U_SQUOTE] = ACTIONS(1177), - [anon_sym_u8_SQUOTE] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_L_DQUOTE] = ACTIONS(1177), - [anon_sym_u_DQUOTE] = ACTIONS(1177), - [anon_sym_U_DQUOTE] = ACTIONS(1177), - [anon_sym_u8_DQUOTE] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [sym_true] = ACTIONS(1175), - [sym_false] = ACTIONS(1175), - [anon_sym_NULL] = ACTIONS(1175), - [anon_sym_nullptr] = ACTIONS(1175), + [216] = { + [sym_identifier] = ACTIONS(1187), + [aux_sym_preproc_include_token1] = ACTIONS(1187), + [aux_sym_preproc_def_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token1] = ACTIONS(1187), + [aux_sym_preproc_if_token2] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), + [sym_preproc_directive] = ACTIONS(1187), + [anon_sym_LPAREN2] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym___extension__] = ACTIONS(1187), + [anon_sym_typedef] = ACTIONS(1187), + [anon_sym_extern] = ACTIONS(1187), + [anon_sym___attribute__] = ACTIONS(1187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), + [anon_sym___declspec] = ACTIONS(1187), + [anon_sym___cdecl] = ACTIONS(1187), + [anon_sym___clrcall] = ACTIONS(1187), + [anon_sym___stdcall] = ACTIONS(1187), + [anon_sym___fastcall] = ACTIONS(1187), + [anon_sym___thiscall] = ACTIONS(1187), + [anon_sym___vectorcall] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_signed] = ACTIONS(1187), + [anon_sym_unsigned] = ACTIONS(1187), + [anon_sym_long] = ACTIONS(1187), + [anon_sym_short] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(1187), + [anon_sym_auto] = ACTIONS(1187), + [anon_sym_register] = ACTIONS(1187), + [anon_sym_inline] = ACTIONS(1187), + [anon_sym___inline] = ACTIONS(1187), + [anon_sym___inline__] = ACTIONS(1187), + [anon_sym___forceinline] = ACTIONS(1187), + [anon_sym_thread_local] = ACTIONS(1187), + [anon_sym___thread] = ACTIONS(1187), + [anon_sym_const] = ACTIONS(1187), + [anon_sym_constexpr] = ACTIONS(1187), + [anon_sym_volatile] = ACTIONS(1187), + [anon_sym_restrict] = ACTIONS(1187), + [anon_sym___restrict__] = ACTIONS(1187), + [anon_sym__Atomic] = ACTIONS(1187), + [anon_sym__Noreturn] = ACTIONS(1187), + [anon_sym_noreturn] = ACTIONS(1187), + [anon_sym__Nonnull] = ACTIONS(1187), + [anon_sym_alignas] = ACTIONS(1187), + [anon_sym__Alignas] = ACTIONS(1187), + [sym_primitive_type] = ACTIONS(1187), + [anon_sym_enum] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_switch] = ACTIONS(1187), + [anon_sym_case] = ACTIONS(1187), + [anon_sym_default] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_goto] = ACTIONS(1187), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_sizeof] = ACTIONS(1187), + [anon_sym___alignof__] = ACTIONS(1187), + [anon_sym___alignof] = ACTIONS(1187), + [anon_sym__alignof] = ACTIONS(1187), + [anon_sym_alignof] = ACTIONS(1187), + [anon_sym__Alignof] = ACTIONS(1187), + [anon_sym_offsetof] = ACTIONS(1187), + [anon_sym__Generic] = ACTIONS(1187), + [anon_sym_asm] = ACTIONS(1187), + [anon_sym___asm__] = ACTIONS(1187), + [sym_number_literal] = ACTIONS(1189), + [anon_sym_L_SQUOTE] = ACTIONS(1189), + [anon_sym_u_SQUOTE] = ACTIONS(1189), + [anon_sym_U_SQUOTE] = ACTIONS(1189), + [anon_sym_u8_SQUOTE] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_L_DQUOTE] = ACTIONS(1189), + [anon_sym_u_DQUOTE] = ACTIONS(1189), + [anon_sym_U_DQUOTE] = ACTIONS(1189), + [anon_sym_u8_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [anon_sym_NULL] = ACTIONS(1187), + [anon_sym_nullptr] = ACTIONS(1187), [sym_comment] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(1179), - [aux_sym_preproc_include_token1] = ACTIONS(1179), - [aux_sym_preproc_def_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym___extension__] = ACTIONS(1179), - [anon_sym_typedef] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym___attribute__] = ACTIONS(1179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym___declspec] = ACTIONS(1179), - [anon_sym___cdecl] = ACTIONS(1179), - [anon_sym___clrcall] = ACTIONS(1179), - [anon_sym___stdcall] = ACTIONS(1179), - [anon_sym___fastcall] = ACTIONS(1179), - [anon_sym___thiscall] = ACTIONS(1179), - [anon_sym___vectorcall] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_signed] = ACTIONS(1179), - [anon_sym_unsigned] = ACTIONS(1179), - [anon_sym_long] = ACTIONS(1179), - [anon_sym_short] = ACTIONS(1179), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_auto] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_inline] = ACTIONS(1179), - [anon_sym___inline] = ACTIONS(1179), - [anon_sym___inline__] = ACTIONS(1179), - [anon_sym___forceinline] = ACTIONS(1179), - [anon_sym_thread_local] = ACTIONS(1179), - [anon_sym___thread] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_constexpr] = ACTIONS(1179), - [anon_sym_volatile] = ACTIONS(1179), - [anon_sym_restrict] = ACTIONS(1179), - [anon_sym___restrict__] = ACTIONS(1179), - [anon_sym__Atomic] = ACTIONS(1179), - [anon_sym__Noreturn] = ACTIONS(1179), - [anon_sym_noreturn] = ACTIONS(1179), - [anon_sym_alignas] = ACTIONS(1179), - [anon_sym__Alignas] = ACTIONS(1179), - [sym_primitive_type] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_goto] = ACTIONS(1179), - [anon_sym___try] = ACTIONS(1179), - [anon_sym___leave] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_sizeof] = ACTIONS(1179), - [anon_sym___alignof__] = ACTIONS(1179), - [anon_sym___alignof] = ACTIONS(1179), - [anon_sym__alignof] = ACTIONS(1179), - [anon_sym_alignof] = ACTIONS(1179), - [anon_sym__Alignof] = ACTIONS(1179), - [anon_sym_offsetof] = ACTIONS(1179), - [anon_sym__Generic] = ACTIONS(1179), - [anon_sym_asm] = ACTIONS(1179), - [anon_sym___asm__] = ACTIONS(1179), - [sym_number_literal] = ACTIONS(1181), - [anon_sym_L_SQUOTE] = ACTIONS(1181), - [anon_sym_u_SQUOTE] = ACTIONS(1181), - [anon_sym_U_SQUOTE] = ACTIONS(1181), - [anon_sym_u8_SQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [anon_sym_L_DQUOTE] = ACTIONS(1181), - [anon_sym_u_DQUOTE] = ACTIONS(1181), - [anon_sym_U_DQUOTE] = ACTIONS(1181), - [anon_sym_u8_DQUOTE] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym_true] = ACTIONS(1179), - [sym_false] = ACTIONS(1179), - [anon_sym_NULL] = ACTIONS(1179), - [anon_sym_nullptr] = ACTIONS(1179), + [217] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + }, + [218] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1183), - [aux_sym_preproc_include_token1] = ACTIONS(1183), - [aux_sym_preproc_def_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym___extension__] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym___attribute__] = ACTIONS(1183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), - [anon_sym___declspec] = ACTIONS(1183), - [anon_sym___cdecl] = ACTIONS(1183), - [anon_sym___clrcall] = ACTIONS(1183), - [anon_sym___stdcall] = ACTIONS(1183), - [anon_sym___fastcall] = ACTIONS(1183), - [anon_sym___thiscall] = ACTIONS(1183), - [anon_sym___vectorcall] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_inline] = ACTIONS(1183), - [anon_sym___inline] = ACTIONS(1183), - [anon_sym___inline__] = ACTIONS(1183), - [anon_sym___forceinline] = ACTIONS(1183), - [anon_sym_thread_local] = ACTIONS(1183), - [anon_sym___thread] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_constexpr] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym___restrict__] = ACTIONS(1183), - [anon_sym__Atomic] = ACTIONS(1183), - [anon_sym__Noreturn] = ACTIONS(1183), - [anon_sym_noreturn] = ACTIONS(1183), - [anon_sym_alignas] = ACTIONS(1183), - [anon_sym__Alignas] = ACTIONS(1183), - [sym_primitive_type] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym___try] = ACTIONS(1183), - [anon_sym___leave] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym___alignof__] = ACTIONS(1183), - [anon_sym___alignof] = ACTIONS(1183), - [anon_sym__alignof] = ACTIONS(1183), - [anon_sym_alignof] = ACTIONS(1183), - [anon_sym__Alignof] = ACTIONS(1183), - [anon_sym_offsetof] = ACTIONS(1183), - [anon_sym__Generic] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym___asm__] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1185), - [anon_sym_L_SQUOTE] = ACTIONS(1185), - [anon_sym_u_SQUOTE] = ACTIONS(1185), - [anon_sym_U_SQUOTE] = ACTIONS(1185), - [anon_sym_u8_SQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [anon_sym_L_DQUOTE] = ACTIONS(1185), - [anon_sym_u_DQUOTE] = ACTIONS(1185), - [anon_sym_U_DQUOTE] = ACTIONS(1185), - [anon_sym_u8_DQUOTE] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [anon_sym_NULL] = ACTIONS(1183), - [anon_sym_nullptr] = ACTIONS(1183), + [219] = { + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token2] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym__Nonnull] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1183), - [aux_sym_preproc_include_token1] = ACTIONS(1183), - [aux_sym_preproc_def_token1] = ACTIONS(1183), - [aux_sym_preproc_if_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1183), - [sym_preproc_directive] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym___extension__] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym___attribute__] = ACTIONS(1183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), - [anon_sym___declspec] = ACTIONS(1183), - [anon_sym___cdecl] = ACTIONS(1183), - [anon_sym___clrcall] = ACTIONS(1183), - [anon_sym___stdcall] = ACTIONS(1183), - [anon_sym___fastcall] = ACTIONS(1183), - [anon_sym___thiscall] = ACTIONS(1183), - [anon_sym___vectorcall] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_signed] = ACTIONS(1183), - [anon_sym_unsigned] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_auto] = ACTIONS(1183), - [anon_sym_register] = ACTIONS(1183), - [anon_sym_inline] = ACTIONS(1183), - [anon_sym___inline] = ACTIONS(1183), - [anon_sym___inline__] = ACTIONS(1183), - [anon_sym___forceinline] = ACTIONS(1183), - [anon_sym_thread_local] = ACTIONS(1183), - [anon_sym___thread] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_constexpr] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_restrict] = ACTIONS(1183), - [anon_sym___restrict__] = ACTIONS(1183), - [anon_sym__Atomic] = ACTIONS(1183), - [anon_sym__Noreturn] = ACTIONS(1183), - [anon_sym_noreturn] = ACTIONS(1183), - [anon_sym_alignas] = ACTIONS(1183), - [anon_sym__Alignas] = ACTIONS(1183), - [sym_primitive_type] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_goto] = ACTIONS(1183), - [anon_sym___try] = ACTIONS(1183), - [anon_sym___leave] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_sizeof] = ACTIONS(1183), - [anon_sym___alignof__] = ACTIONS(1183), - [anon_sym___alignof] = ACTIONS(1183), - [anon_sym__alignof] = ACTIONS(1183), - [anon_sym_alignof] = ACTIONS(1183), - [anon_sym__Alignof] = ACTIONS(1183), - [anon_sym_offsetof] = ACTIONS(1183), - [anon_sym__Generic] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1183), - [anon_sym___asm__] = ACTIONS(1183), - [sym_number_literal] = ACTIONS(1185), - [anon_sym_L_SQUOTE] = ACTIONS(1185), - [anon_sym_u_SQUOTE] = ACTIONS(1185), - [anon_sym_U_SQUOTE] = ACTIONS(1185), - [anon_sym_u8_SQUOTE] = ACTIONS(1185), - [anon_sym_SQUOTE] = ACTIONS(1185), - [anon_sym_L_DQUOTE] = ACTIONS(1185), - [anon_sym_u_DQUOTE] = ACTIONS(1185), - [anon_sym_U_DQUOTE] = ACTIONS(1185), - [anon_sym_u8_DQUOTE] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1185), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [anon_sym_NULL] = ACTIONS(1183), - [anon_sym_nullptr] = ACTIONS(1183), + [220] = { + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token2] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym__Nonnull] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), + [sym_comment] = ACTIONS(3), + }, + [221] = { + [sym_identifier] = ACTIONS(1227), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token2] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_LPAREN2] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym___extension__] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym___attribute__] = ACTIONS(1227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1227), + [anon_sym___cdecl] = ACTIONS(1227), + [anon_sym___clrcall] = ACTIONS(1227), + [anon_sym___stdcall] = ACTIONS(1227), + [anon_sym___fastcall] = ACTIONS(1227), + [anon_sym___thiscall] = ACTIONS(1227), + [anon_sym___vectorcall] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym___inline] = ACTIONS(1227), + [anon_sym___inline__] = ACTIONS(1227), + [anon_sym___forceinline] = ACTIONS(1227), + [anon_sym_thread_local] = ACTIONS(1227), + [anon_sym___thread] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_constexpr] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym___restrict__] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym__Noreturn] = ACTIONS(1227), + [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym__Nonnull] = ACTIONS(1227), + [anon_sym_alignas] = ACTIONS(1227), + [anon_sym__Alignas] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym___try] = ACTIONS(1227), + [anon_sym___leave] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_sizeof] = ACTIONS(1227), + [anon_sym___alignof__] = ACTIONS(1227), + [anon_sym___alignof] = ACTIONS(1227), + [anon_sym__alignof] = ACTIONS(1227), + [anon_sym_alignof] = ACTIONS(1227), + [anon_sym__Alignof] = ACTIONS(1227), + [anon_sym_offsetof] = ACTIONS(1227), + [anon_sym__Generic] = ACTIONS(1227), + [anon_sym_asm] = ACTIONS(1227), + [anon_sym___asm__] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_L_SQUOTE] = ACTIONS(1229), + [anon_sym_u_SQUOTE] = ACTIONS(1229), + [anon_sym_U_SQUOTE] = ACTIONS(1229), + [anon_sym_u8_SQUOTE] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_L_DQUOTE] = ACTIONS(1229), + [anon_sym_u_DQUOTE] = ACTIONS(1229), + [anon_sym_U_DQUOTE] = ACTIONS(1229), + [anon_sym_u8_DQUOTE] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [anon_sym_NULL] = ACTIONS(1227), + [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(1187), - [aux_sym_preproc_include_token1] = ACTIONS(1187), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1187), - [anon_sym_LPAREN2] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym___extension__] = ACTIONS(1187), - [anon_sym_typedef] = ACTIONS(1187), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym___attribute__] = ACTIONS(1187), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), - [anon_sym___declspec] = ACTIONS(1187), - [anon_sym___cdecl] = ACTIONS(1187), - [anon_sym___clrcall] = ACTIONS(1187), - [anon_sym___stdcall] = ACTIONS(1187), - [anon_sym___fastcall] = ACTIONS(1187), - [anon_sym___thiscall] = ACTIONS(1187), - [anon_sym___vectorcall] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_signed] = ACTIONS(1187), - [anon_sym_unsigned] = ACTIONS(1187), - [anon_sym_long] = ACTIONS(1187), - [anon_sym_short] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_auto] = ACTIONS(1187), - [anon_sym_register] = ACTIONS(1187), - [anon_sym_inline] = ACTIONS(1187), - [anon_sym___inline] = ACTIONS(1187), - [anon_sym___inline__] = ACTIONS(1187), - [anon_sym___forceinline] = ACTIONS(1187), - [anon_sym_thread_local] = ACTIONS(1187), - [anon_sym___thread] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_constexpr] = ACTIONS(1187), - [anon_sym_volatile] = ACTIONS(1187), - [anon_sym_restrict] = ACTIONS(1187), - [anon_sym___restrict__] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(1187), - [anon_sym__Noreturn] = ACTIONS(1187), - [anon_sym_noreturn] = ACTIONS(1187), - [anon_sym_alignas] = ACTIONS(1187), - [anon_sym__Alignas] = ACTIONS(1187), - [sym_primitive_type] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_goto] = ACTIONS(1187), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1187), - [anon_sym___alignof__] = ACTIONS(1187), - [anon_sym___alignof] = ACTIONS(1187), - [anon_sym__alignof] = ACTIONS(1187), - [anon_sym_alignof] = ACTIONS(1187), - [anon_sym__Alignof] = ACTIONS(1187), - [anon_sym_offsetof] = ACTIONS(1187), - [anon_sym__Generic] = ACTIONS(1187), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym___asm__] = ACTIONS(1187), - [sym_number_literal] = ACTIONS(1189), - [anon_sym_L_SQUOTE] = ACTIONS(1189), - [anon_sym_u_SQUOTE] = ACTIONS(1189), - [anon_sym_U_SQUOTE] = ACTIONS(1189), - [anon_sym_u8_SQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_L_DQUOTE] = ACTIONS(1189), - [anon_sym_u_DQUOTE] = ACTIONS(1189), - [anon_sym_U_DQUOTE] = ACTIONS(1189), - [anon_sym_u8_DQUOTE] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [anon_sym_NULL] = ACTIONS(1187), - [anon_sym_nullptr] = ACTIONS(1187), + [222] = { + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token2] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym__Nonnull] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(1187), - [aux_sym_preproc_include_token1] = ACTIONS(1187), - [aux_sym_preproc_def_token1] = ACTIONS(1187), - [aux_sym_preproc_if_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1187), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1187), - [sym_preproc_directive] = ACTIONS(1187), - [anon_sym_LPAREN2] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_TILDE] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1187), - [anon_sym_PLUS] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym___extension__] = ACTIONS(1187), - [anon_sym_typedef] = ACTIONS(1187), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym___attribute__] = ACTIONS(1187), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1189), - [anon_sym___declspec] = ACTIONS(1187), - [anon_sym___cdecl] = ACTIONS(1187), - [anon_sym___clrcall] = ACTIONS(1187), - [anon_sym___stdcall] = ACTIONS(1187), - [anon_sym___fastcall] = ACTIONS(1187), - [anon_sym___thiscall] = ACTIONS(1187), - [anon_sym___vectorcall] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_signed] = ACTIONS(1187), - [anon_sym_unsigned] = ACTIONS(1187), - [anon_sym_long] = ACTIONS(1187), - [anon_sym_short] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_auto] = ACTIONS(1187), - [anon_sym_register] = ACTIONS(1187), - [anon_sym_inline] = ACTIONS(1187), - [anon_sym___inline] = ACTIONS(1187), - [anon_sym___inline__] = ACTIONS(1187), - [anon_sym___forceinline] = ACTIONS(1187), - [anon_sym_thread_local] = ACTIONS(1187), - [anon_sym___thread] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_constexpr] = ACTIONS(1187), - [anon_sym_volatile] = ACTIONS(1187), - [anon_sym_restrict] = ACTIONS(1187), - [anon_sym___restrict__] = ACTIONS(1187), - [anon_sym__Atomic] = ACTIONS(1187), - [anon_sym__Noreturn] = ACTIONS(1187), - [anon_sym_noreturn] = ACTIONS(1187), - [anon_sym_alignas] = ACTIONS(1187), - [anon_sym__Alignas] = ACTIONS(1187), - [sym_primitive_type] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_switch] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_goto] = ACTIONS(1187), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1187), - [anon_sym_DASH_DASH] = ACTIONS(1189), - [anon_sym_PLUS_PLUS] = ACTIONS(1189), - [anon_sym_sizeof] = ACTIONS(1187), - [anon_sym___alignof__] = ACTIONS(1187), - [anon_sym___alignof] = ACTIONS(1187), - [anon_sym__alignof] = ACTIONS(1187), - [anon_sym_alignof] = ACTIONS(1187), - [anon_sym__Alignof] = ACTIONS(1187), - [anon_sym_offsetof] = ACTIONS(1187), - [anon_sym__Generic] = ACTIONS(1187), - [anon_sym_asm] = ACTIONS(1187), - [anon_sym___asm__] = ACTIONS(1187), - [sym_number_literal] = ACTIONS(1189), - [anon_sym_L_SQUOTE] = ACTIONS(1189), - [anon_sym_u_SQUOTE] = ACTIONS(1189), - [anon_sym_U_SQUOTE] = ACTIONS(1189), - [anon_sym_u8_SQUOTE] = ACTIONS(1189), - [anon_sym_SQUOTE] = ACTIONS(1189), - [anon_sym_L_DQUOTE] = ACTIONS(1189), - [anon_sym_u_DQUOTE] = ACTIONS(1189), - [anon_sym_U_DQUOTE] = ACTIONS(1189), - [anon_sym_u8_DQUOTE] = ACTIONS(1189), - [anon_sym_DQUOTE] = ACTIONS(1189), - [sym_true] = ACTIONS(1187), - [sym_false] = ACTIONS(1187), - [anon_sym_NULL] = ACTIONS(1187), - [anon_sym_nullptr] = ACTIONS(1187), + [223] = { + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token2] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym__Nonnull] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token2] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym__Nonnull] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1239), - [aux_sym_preproc_def_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [sym_preproc_directive] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym___extension__] = ACTIONS(1239), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [anon_sym___inline] = ACTIONS(1239), - [anon_sym___inline__] = ACTIONS(1239), - [anon_sym___forceinline] = ACTIONS(1239), - [anon_sym_thread_local] = ACTIONS(1239), - [anon_sym___thread] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_constexpr] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym___restrict__] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym__Noreturn] = ACTIONS(1239), - [anon_sym_noreturn] = ACTIONS(1239), - [anon_sym_alignas] = ACTIONS(1239), - [anon_sym__Alignas] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [anon_sym_case] = ACTIONS(1239), - [anon_sym_default] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_goto] = ACTIONS(1239), - [anon_sym___try] = ACTIONS(1239), - [anon_sym___leave] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [anon_sym___alignof__] = ACTIONS(1239), - [anon_sym___alignof] = ACTIONS(1239), - [anon_sym__alignof] = ACTIONS(1239), - [anon_sym_alignof] = ACTIONS(1239), - [anon_sym__Alignof] = ACTIONS(1239), - [anon_sym_offsetof] = ACTIONS(1239), - [anon_sym__Generic] = ACTIONS(1239), - [anon_sym_asm] = ACTIONS(1239), - [anon_sym___asm__] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [anon_sym_NULL] = ACTIONS(1239), - [anon_sym_nullptr] = ACTIONS(1239), + [225] = { + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1247), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), + [sym_preproc_directive] = ACTIONS(1247), + [anon_sym_LPAREN2] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym___extension__] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1247), + [anon_sym___attribute__] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1247), + [anon_sym___cdecl] = ACTIONS(1247), + [anon_sym___clrcall] = ACTIONS(1247), + [anon_sym___stdcall] = ACTIONS(1247), + [anon_sym___fastcall] = ACTIONS(1247), + [anon_sym___thiscall] = ACTIONS(1247), + [anon_sym___vectorcall] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1247), + [anon_sym_unsigned] = ACTIONS(1247), + [anon_sym_long] = ACTIONS(1247), + [anon_sym_short] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1247), + [anon_sym_auto] = ACTIONS(1247), + [anon_sym_register] = ACTIONS(1247), + [anon_sym_inline] = ACTIONS(1247), + [anon_sym___inline] = ACTIONS(1247), + [anon_sym___inline__] = ACTIONS(1247), + [anon_sym___forceinline] = ACTIONS(1247), + [anon_sym_thread_local] = ACTIONS(1247), + [anon_sym___thread] = ACTIONS(1247), + [anon_sym_const] = ACTIONS(1247), + [anon_sym_constexpr] = ACTIONS(1247), + [anon_sym_volatile] = ACTIONS(1247), + [anon_sym_restrict] = ACTIONS(1247), + [anon_sym___restrict__] = ACTIONS(1247), + [anon_sym__Atomic] = ACTIONS(1247), + [anon_sym__Noreturn] = ACTIONS(1247), + [anon_sym_noreturn] = ACTIONS(1247), + [anon_sym__Nonnull] = ACTIONS(1247), + [anon_sym_alignas] = ACTIONS(1247), + [anon_sym__Alignas] = ACTIONS(1247), + [sym_primitive_type] = ACTIONS(1247), + [anon_sym_enum] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_union] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_switch] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_goto] = ACTIONS(1247), + [anon_sym___try] = ACTIONS(1247), + [anon_sym___leave] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_sizeof] = ACTIONS(1247), + [anon_sym___alignof__] = ACTIONS(1247), + [anon_sym___alignof] = ACTIONS(1247), + [anon_sym__alignof] = ACTIONS(1247), + [anon_sym_alignof] = ACTIONS(1247), + [anon_sym__Alignof] = ACTIONS(1247), + [anon_sym_offsetof] = ACTIONS(1247), + [anon_sym__Generic] = ACTIONS(1247), + [anon_sym_asm] = ACTIONS(1247), + [anon_sym___asm__] = ACTIONS(1247), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_L_SQUOTE] = ACTIONS(1249), + [anon_sym_u_SQUOTE] = ACTIONS(1249), + [anon_sym_U_SQUOTE] = ACTIONS(1249), + [anon_sym_u8_SQUOTE] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_L_DQUOTE] = ACTIONS(1249), + [anon_sym_u_DQUOTE] = ACTIONS(1249), + [anon_sym_U_DQUOTE] = ACTIONS(1249), + [anon_sym_u8_DQUOTE] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1247), + [anon_sym_nullptr] = ACTIONS(1247), [sym_comment] = ACTIONS(3), }, - [231] = { + [226] = { + [sym_identifier] = ACTIONS(1123), + [aux_sym_preproc_include_token1] = ACTIONS(1123), + [aux_sym_preproc_def_token1] = ACTIONS(1123), + [aux_sym_preproc_if_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1123), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1123), + [sym_preproc_directive] = ACTIONS(1123), + [anon_sym_LPAREN2] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym___extension__] = ACTIONS(1123), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(1123), + [anon_sym___attribute__] = ACTIONS(1123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1125), + [anon_sym___declspec] = ACTIONS(1123), + [anon_sym___cdecl] = ACTIONS(1123), + [anon_sym___clrcall] = ACTIONS(1123), + [anon_sym___stdcall] = ACTIONS(1123), + [anon_sym___fastcall] = ACTIONS(1123), + [anon_sym___thiscall] = ACTIONS(1123), + [anon_sym___vectorcall] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [anon_sym_signed] = ACTIONS(1123), + [anon_sym_unsigned] = ACTIONS(1123), + [anon_sym_long] = ACTIONS(1123), + [anon_sym_short] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_auto] = ACTIONS(1123), + [anon_sym_register] = ACTIONS(1123), + [anon_sym_inline] = ACTIONS(1123), + [anon_sym___inline] = ACTIONS(1123), + [anon_sym___inline__] = ACTIONS(1123), + [anon_sym___forceinline] = ACTIONS(1123), + [anon_sym_thread_local] = ACTIONS(1123), + [anon_sym___thread] = ACTIONS(1123), + [anon_sym_const] = ACTIONS(1123), + [anon_sym_constexpr] = ACTIONS(1123), + [anon_sym_volatile] = ACTIONS(1123), + [anon_sym_restrict] = ACTIONS(1123), + [anon_sym___restrict__] = ACTIONS(1123), + [anon_sym__Atomic] = ACTIONS(1123), + [anon_sym__Noreturn] = ACTIONS(1123), + [anon_sym_noreturn] = ACTIONS(1123), + [anon_sym__Nonnull] = ACTIONS(1123), + [anon_sym_alignas] = ACTIONS(1123), + [anon_sym__Alignas] = ACTIONS(1123), + [sym_primitive_type] = ACTIONS(1123), + [anon_sym_enum] = ACTIONS(1123), + [anon_sym_struct] = ACTIONS(1123), + [anon_sym_union] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1123), + [anon_sym_else] = ACTIONS(1123), + [anon_sym_switch] = ACTIONS(1123), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1123), + [anon_sym_while] = ACTIONS(1123), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_for] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1123), + [anon_sym_continue] = ACTIONS(1123), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1123), + [anon_sym___leave] = ACTIONS(1123), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_sizeof] = ACTIONS(1123), + [anon_sym___alignof__] = ACTIONS(1123), + [anon_sym___alignof] = ACTIONS(1123), + [anon_sym__alignof] = ACTIONS(1123), + [anon_sym_alignof] = ACTIONS(1123), + [anon_sym__Alignof] = ACTIONS(1123), + [anon_sym_offsetof] = ACTIONS(1123), + [anon_sym__Generic] = ACTIONS(1123), + [anon_sym_asm] = ACTIONS(1123), + [anon_sym___asm__] = ACTIONS(1123), + [sym_number_literal] = ACTIONS(1125), + [anon_sym_L_SQUOTE] = ACTIONS(1125), + [anon_sym_u_SQUOTE] = ACTIONS(1125), + [anon_sym_U_SQUOTE] = ACTIONS(1125), + [anon_sym_u8_SQUOTE] = ACTIONS(1125), + [anon_sym_SQUOTE] = ACTIONS(1125), + [anon_sym_L_DQUOTE] = ACTIONS(1125), + [anon_sym_u_DQUOTE] = ACTIONS(1125), + [anon_sym_U_DQUOTE] = ACTIONS(1125), + [anon_sym_u8_DQUOTE] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(1125), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [anon_sym_NULL] = ACTIONS(1123), + [anon_sym_nullptr] = ACTIONS(1123), + [sym_comment] = ACTIONS(3), + }, + [227] = { [ts_builtin_sym_end] = ACTIONS(1193), [sym_identifier] = ACTIONS(1191), [aux_sym_preproc_include_token1] = ACTIONS(1191), @@ -39611,6 +39461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1191), [anon_sym__Noreturn] = ACTIONS(1191), [anon_sym_noreturn] = ACTIONS(1191), + [anon_sym__Nonnull] = ACTIONS(1191), [anon_sym_alignas] = ACTIONS(1191), [anon_sym__Alignas] = ACTIONS(1191), [sym_primitive_type] = ACTIONS(1191), @@ -39660,7 +39511,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1191), [sym_comment] = ACTIONS(3), }, - [232] = { + [228] = { + [sym_identifier] = ACTIONS(1135), + [aux_sym_preproc_include_token1] = ACTIONS(1135), + [aux_sym_preproc_def_token1] = ACTIONS(1135), + [aux_sym_preproc_if_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), + [sym_preproc_directive] = ACTIONS(1135), + [anon_sym_LPAREN2] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym___extension__] = ACTIONS(1135), + [anon_sym_typedef] = ACTIONS(1135), + [anon_sym_extern] = ACTIONS(1135), + [anon_sym___attribute__] = ACTIONS(1135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), + [anon_sym___declspec] = ACTIONS(1135), + [anon_sym___cdecl] = ACTIONS(1135), + [anon_sym___clrcall] = ACTIONS(1135), + [anon_sym___stdcall] = ACTIONS(1135), + [anon_sym___fastcall] = ACTIONS(1135), + [anon_sym___thiscall] = ACTIONS(1135), + [anon_sym___vectorcall] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_signed] = ACTIONS(1135), + [anon_sym_unsigned] = ACTIONS(1135), + [anon_sym_long] = ACTIONS(1135), + [anon_sym_short] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1135), + [anon_sym_auto] = ACTIONS(1135), + [anon_sym_register] = ACTIONS(1135), + [anon_sym_inline] = ACTIONS(1135), + [anon_sym___inline] = ACTIONS(1135), + [anon_sym___inline__] = ACTIONS(1135), + [anon_sym___forceinline] = ACTIONS(1135), + [anon_sym_thread_local] = ACTIONS(1135), + [anon_sym___thread] = ACTIONS(1135), + [anon_sym_const] = ACTIONS(1135), + [anon_sym_constexpr] = ACTIONS(1135), + [anon_sym_volatile] = ACTIONS(1135), + [anon_sym_restrict] = ACTIONS(1135), + [anon_sym___restrict__] = ACTIONS(1135), + [anon_sym__Atomic] = ACTIONS(1135), + [anon_sym__Noreturn] = ACTIONS(1135), + [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym__Nonnull] = ACTIONS(1135), + [anon_sym_alignas] = ACTIONS(1135), + [anon_sym__Alignas] = ACTIONS(1135), + [sym_primitive_type] = ACTIONS(1135), + [anon_sym_enum] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_union] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_switch] = ACTIONS(1135), + [anon_sym_case] = ACTIONS(1135), + [anon_sym_default] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_goto] = ACTIONS(1135), + [anon_sym___try] = ACTIONS(1135), + [anon_sym___leave] = ACTIONS(1135), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_sizeof] = ACTIONS(1135), + [anon_sym___alignof__] = ACTIONS(1135), + [anon_sym___alignof] = ACTIONS(1135), + [anon_sym__alignof] = ACTIONS(1135), + [anon_sym_alignof] = ACTIONS(1135), + [anon_sym__Alignof] = ACTIONS(1135), + [anon_sym_offsetof] = ACTIONS(1135), + [anon_sym__Generic] = ACTIONS(1135), + [anon_sym_asm] = ACTIONS(1135), + [anon_sym___asm__] = ACTIONS(1135), + [sym_number_literal] = ACTIONS(1137), + [anon_sym_L_SQUOTE] = ACTIONS(1137), + [anon_sym_u_SQUOTE] = ACTIONS(1137), + [anon_sym_U_SQUOTE] = ACTIONS(1137), + [anon_sym_u8_SQUOTE] = ACTIONS(1137), + [anon_sym_SQUOTE] = ACTIONS(1137), + [anon_sym_L_DQUOTE] = ACTIONS(1137), + [anon_sym_u_DQUOTE] = ACTIONS(1137), + [anon_sym_U_DQUOTE] = ACTIONS(1137), + [anon_sym_u8_DQUOTE] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_true] = ACTIONS(1135), + [sym_false] = ACTIONS(1135), + [anon_sym_NULL] = ACTIONS(1135), + [anon_sym_nullptr] = ACTIONS(1135), + [sym_comment] = ACTIONS(3), + }, + [229] = { [ts_builtin_sym_end] = ACTIONS(1197), [sym_identifier] = ACTIONS(1195), [aux_sym_preproc_include_token1] = ACTIONS(1195), @@ -39711,6 +39663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1195), [anon_sym__Noreturn] = ACTIONS(1195), [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), [anon_sym_alignas] = ACTIONS(1195), [anon_sym__Alignas] = ACTIONS(1195), [sym_primitive_type] = ACTIONS(1195), @@ -39760,7 +39713,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1195), [sym_comment] = ACTIONS(3), }, - [233] = { + [230] = { + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [sym_preproc_directive] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym___extension__] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1197), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [anon_sym___inline] = ACTIONS(1195), + [anon_sym___inline__] = ACTIONS(1195), + [anon_sym___forceinline] = ACTIONS(1195), + [anon_sym_thread_local] = ACTIONS(1195), + [anon_sym___thread] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_constexpr] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym___restrict__] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym__Noreturn] = ACTIONS(1195), + [anon_sym_noreturn] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym_alignas] = ACTIONS(1195), + [anon_sym__Alignas] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym___try] = ACTIONS(1195), + [anon_sym___leave] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [anon_sym___alignof__] = ACTIONS(1195), + [anon_sym___alignof] = ACTIONS(1195), + [anon_sym__alignof] = ACTIONS(1195), + [anon_sym_alignof] = ACTIONS(1195), + [anon_sym__Alignof] = ACTIONS(1195), + [anon_sym_offsetof] = ACTIONS(1195), + [anon_sym__Generic] = ACTIONS(1195), + [anon_sym_asm] = ACTIONS(1195), + [anon_sym___asm__] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [anon_sym_NULL] = ACTIONS(1195), + [anon_sym_nullptr] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + }, + [231] = { + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1199), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), + [sym_preproc_directive] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1199), + [anon_sym_extern] = ACTIONS(1199), + [anon_sym___attribute__] = ACTIONS(1199), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1199), + [anon_sym___cdecl] = ACTIONS(1199), + [anon_sym___clrcall] = ACTIONS(1199), + [anon_sym___stdcall] = ACTIONS(1199), + [anon_sym___fastcall] = ACTIONS(1199), + [anon_sym___thiscall] = ACTIONS(1199), + [anon_sym___vectorcall] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1199), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_auto] = ACTIONS(1199), + [anon_sym_register] = ACTIONS(1199), + [anon_sym_inline] = ACTIONS(1199), + [anon_sym___inline] = ACTIONS(1199), + [anon_sym___inline__] = ACTIONS(1199), + [anon_sym___forceinline] = ACTIONS(1199), + [anon_sym_thread_local] = ACTIONS(1199), + [anon_sym___thread] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(1199), + [anon_sym_constexpr] = ACTIONS(1199), + [anon_sym_volatile] = ACTIONS(1199), + [anon_sym_restrict] = ACTIONS(1199), + [anon_sym___restrict__] = ACTIONS(1199), + [anon_sym__Atomic] = ACTIONS(1199), + [anon_sym__Noreturn] = ACTIONS(1199), + [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym__Nonnull] = ACTIONS(1199), + [anon_sym_alignas] = ACTIONS(1199), + [anon_sym__Alignas] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1199), + [anon_sym_enum] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_do] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_goto] = ACTIONS(1199), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_sizeof] = ACTIONS(1199), + [anon_sym___alignof__] = ACTIONS(1199), + [anon_sym___alignof] = ACTIONS(1199), + [anon_sym__alignof] = ACTIONS(1199), + [anon_sym_alignof] = ACTIONS(1199), + [anon_sym__Alignof] = ACTIONS(1199), + [anon_sym_offsetof] = ACTIONS(1199), + [anon_sym__Generic] = ACTIONS(1199), + [anon_sym_asm] = ACTIONS(1199), + [anon_sym___asm__] = ACTIONS(1199), + [sym_number_literal] = ACTIONS(1201), + [anon_sym_L_SQUOTE] = ACTIONS(1201), + [anon_sym_u_SQUOTE] = ACTIONS(1201), + [anon_sym_U_SQUOTE] = ACTIONS(1201), + [anon_sym_u8_SQUOTE] = ACTIONS(1201), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_L_DQUOTE] = ACTIONS(1201), + [anon_sym_u_DQUOTE] = ACTIONS(1201), + [anon_sym_U_DQUOTE] = ACTIONS(1201), + [anon_sym_u8_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_true] = ACTIONS(1199), + [sym_false] = ACTIONS(1199), + [anon_sym_NULL] = ACTIONS(1199), + [anon_sym_nullptr] = ACTIONS(1199), + [sym_comment] = ACTIONS(3), + }, + [232] = { + [ts_builtin_sym_end] = ACTIONS(1201), [sym_identifier] = ACTIONS(1199), [aux_sym_preproc_include_token1] = ACTIONS(1199), [aux_sym_preproc_def_token1] = ACTIONS(1199), @@ -39789,7 +39945,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1199), [anon_sym___vectorcall] = ACTIONS(1199), [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), [anon_sym_signed] = ACTIONS(1199), [anon_sym_unsigned] = ACTIONS(1199), [anon_sym_long] = ACTIONS(1199), @@ -39811,6 +39966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1199), [anon_sym__Noreturn] = ACTIONS(1199), [anon_sym_noreturn] = ACTIONS(1199), + [anon_sym__Nonnull] = ACTIONS(1199), [anon_sym_alignas] = ACTIONS(1199), [anon_sym__Alignas] = ACTIONS(1199), [sym_primitive_type] = ACTIONS(1199), @@ -39860,7 +40016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1199), [sym_comment] = ACTIONS(3), }, - [234] = { + [233] = { [ts_builtin_sym_end] = ACTIONS(1205), [sym_identifier] = ACTIONS(1203), [aux_sym_preproc_include_token1] = ACTIONS(1203), @@ -39911,6 +40067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1203), [anon_sym__Noreturn] = ACTIONS(1203), [anon_sym_noreturn] = ACTIONS(1203), + [anon_sym__Nonnull] = ACTIONS(1203), [anon_sym_alignas] = ACTIONS(1203), [anon_sym__Alignas] = ACTIONS(1203), [sym_primitive_type] = ACTIONS(1203), @@ -39960,7 +40117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1203), [sym_comment] = ACTIONS(3), }, - [235] = { + [234] = { [ts_builtin_sym_end] = ACTIONS(1209), [sym_identifier] = ACTIONS(1207), [aux_sym_preproc_include_token1] = ACTIONS(1207), @@ -40011,6 +40168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1207), [anon_sym__Noreturn] = ACTIONS(1207), [anon_sym_noreturn] = ACTIONS(1207), + [anon_sym__Nonnull] = ACTIONS(1207), [anon_sym_alignas] = ACTIONS(1207), [anon_sym__Alignas] = ACTIONS(1207), [sym_primitive_type] = ACTIONS(1207), @@ -40060,8 +40218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1207), [sym_comment] = ACTIONS(3), }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(1213), + [235] = { [sym_identifier] = ACTIONS(1211), [aux_sym_preproc_include_token1] = ACTIONS(1211), [aux_sym_preproc_def_token1] = ACTIONS(1211), @@ -40090,6 +40247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1211), [anon_sym___vectorcall] = ACTIONS(1211), [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), [anon_sym_signed] = ACTIONS(1211), [anon_sym_unsigned] = ACTIONS(1211), [anon_sym_long] = ACTIONS(1211), @@ -40111,6 +40269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1211), [anon_sym__Noreturn] = ACTIONS(1211), [anon_sym_noreturn] = ACTIONS(1211), + [anon_sym__Nonnull] = ACTIONS(1211), [anon_sym_alignas] = ACTIONS(1211), [anon_sym__Alignas] = ACTIONS(1211), [sym_primitive_type] = ACTIONS(1211), @@ -40160,7 +40319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1211), [sym_comment] = ACTIONS(3), }, - [237] = { + [236] = { [ts_builtin_sym_end] = ACTIONS(1217), [sym_identifier] = ACTIONS(1215), [aux_sym_preproc_include_token1] = ACTIONS(1215), @@ -40211,6 +40370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1215), [anon_sym__Noreturn] = ACTIONS(1215), [anon_sym_noreturn] = ACTIONS(1215), + [anon_sym__Nonnull] = ACTIONS(1215), [anon_sym_alignas] = ACTIONS(1215), [anon_sym__Alignas] = ACTIONS(1215), [sym_primitive_type] = ACTIONS(1215), @@ -40260,107 +40420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1215), [sym_comment] = ACTIONS(3), }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(1221), - [sym_identifier] = ACTIONS(1219), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1219), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1219), - [sym_preproc_directive] = ACTIONS(1219), - [anon_sym_LPAREN2] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1219), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym___attribute__] = ACTIONS(1219), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1219), - [anon_sym___cdecl] = ACTIONS(1219), - [anon_sym___clrcall] = ACTIONS(1219), - [anon_sym___stdcall] = ACTIONS(1219), - [anon_sym___fastcall] = ACTIONS(1219), - [anon_sym___thiscall] = ACTIONS(1219), - [anon_sym___vectorcall] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1219), - [anon_sym_unsigned] = ACTIONS(1219), - [anon_sym_long] = ACTIONS(1219), - [anon_sym_short] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_auto] = ACTIONS(1219), - [anon_sym_register] = ACTIONS(1219), - [anon_sym_inline] = ACTIONS(1219), - [anon_sym___inline] = ACTIONS(1219), - [anon_sym___inline__] = ACTIONS(1219), - [anon_sym___forceinline] = ACTIONS(1219), - [anon_sym_thread_local] = ACTIONS(1219), - [anon_sym___thread] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_constexpr] = ACTIONS(1219), - [anon_sym_volatile] = ACTIONS(1219), - [anon_sym_restrict] = ACTIONS(1219), - [anon_sym___restrict__] = ACTIONS(1219), - [anon_sym__Atomic] = ACTIONS(1219), - [anon_sym__Noreturn] = ACTIONS(1219), - [anon_sym_noreturn] = ACTIONS(1219), - [anon_sym_alignas] = ACTIONS(1219), - [anon_sym__Alignas] = ACTIONS(1219), - [sym_primitive_type] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_union] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_switch] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_goto] = ACTIONS(1219), - [anon_sym___try] = ACTIONS(1219), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1219), - [anon_sym___alignof__] = ACTIONS(1219), - [anon_sym___alignof] = ACTIONS(1219), - [anon_sym__alignof] = ACTIONS(1219), - [anon_sym_alignof] = ACTIONS(1219), - [anon_sym__Alignof] = ACTIONS(1219), - [anon_sym_offsetof] = ACTIONS(1219), - [anon_sym__Generic] = ACTIONS(1219), - [anon_sym_asm] = ACTIONS(1219), - [anon_sym___asm__] = ACTIONS(1219), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_L_SQUOTE] = ACTIONS(1221), - [anon_sym_u_SQUOTE] = ACTIONS(1221), - [anon_sym_U_SQUOTE] = ACTIONS(1221), - [anon_sym_u8_SQUOTE] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_L_DQUOTE] = ACTIONS(1221), - [anon_sym_u_DQUOTE] = ACTIONS(1221), - [anon_sym_U_DQUOTE] = ACTIONS(1221), - [anon_sym_u8_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1219), - [sym_false] = ACTIONS(1219), - [anon_sym_NULL] = ACTIONS(1219), - [anon_sym_nullptr] = ACTIONS(1219), - [sym_comment] = ACTIONS(3), - }, - [239] = { + [237] = { [ts_builtin_sym_end] = ACTIONS(1221), [sym_identifier] = ACTIONS(1219), [aux_sym_preproc_include_token1] = ACTIONS(1219), @@ -40411,6 +40471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1219), [anon_sym__Noreturn] = ACTIONS(1219), [anon_sym_noreturn] = ACTIONS(1219), + [anon_sym__Nonnull] = ACTIONS(1219), [anon_sym_alignas] = ACTIONS(1219), [anon_sym__Alignas] = ACTIONS(1219), [sym_primitive_type] = ACTIONS(1219), @@ -40460,107 +40521,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1219), [sym_comment] = ACTIONS(3), }, - [240] = { - [sym_identifier] = ACTIONS(1135), - [aux_sym_preproc_include_token1] = ACTIONS(1135), - [aux_sym_preproc_def_token1] = ACTIONS(1135), - [aux_sym_preproc_if_token1] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1135), - [sym_preproc_directive] = ACTIONS(1135), - [anon_sym_LPAREN2] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym___extension__] = ACTIONS(1135), - [anon_sym_typedef] = ACTIONS(1135), - [anon_sym_extern] = ACTIONS(1135), - [anon_sym___attribute__] = ACTIONS(1135), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1137), - [anon_sym___declspec] = ACTIONS(1135), - [anon_sym___cdecl] = ACTIONS(1135), - [anon_sym___clrcall] = ACTIONS(1135), - [anon_sym___stdcall] = ACTIONS(1135), - [anon_sym___fastcall] = ACTIONS(1135), - [anon_sym___thiscall] = ACTIONS(1135), - [anon_sym___vectorcall] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [anon_sym_signed] = ACTIONS(1135), - [anon_sym_unsigned] = ACTIONS(1135), - [anon_sym_long] = ACTIONS(1135), - [anon_sym_short] = ACTIONS(1135), - [anon_sym_static] = ACTIONS(1135), - [anon_sym_auto] = ACTIONS(1135), - [anon_sym_register] = ACTIONS(1135), - [anon_sym_inline] = ACTIONS(1135), - [anon_sym___inline] = ACTIONS(1135), - [anon_sym___inline__] = ACTIONS(1135), - [anon_sym___forceinline] = ACTIONS(1135), - [anon_sym_thread_local] = ACTIONS(1135), - [anon_sym___thread] = ACTIONS(1135), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_constexpr] = ACTIONS(1135), - [anon_sym_volatile] = ACTIONS(1135), - [anon_sym_restrict] = ACTIONS(1135), - [anon_sym___restrict__] = ACTIONS(1135), - [anon_sym__Atomic] = ACTIONS(1135), - [anon_sym__Noreturn] = ACTIONS(1135), - [anon_sym_noreturn] = ACTIONS(1135), - [anon_sym_alignas] = ACTIONS(1135), - [anon_sym__Alignas] = ACTIONS(1135), - [sym_primitive_type] = ACTIONS(1135), - [anon_sym_enum] = ACTIONS(1135), - [anon_sym_struct] = ACTIONS(1135), - [anon_sym_union] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1135), - [anon_sym_else] = ACTIONS(1135), - [anon_sym_switch] = ACTIONS(1135), - [anon_sym_case] = ACTIONS(1135), - [anon_sym_default] = ACTIONS(1135), - [anon_sym_while] = ACTIONS(1135), - [anon_sym_do] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1135), - [anon_sym_return] = ACTIONS(1135), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1135), - [anon_sym_goto] = ACTIONS(1135), - [anon_sym___try] = ACTIONS(1135), - [anon_sym___leave] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1135), - [anon_sym___alignof__] = ACTIONS(1135), - [anon_sym___alignof] = ACTIONS(1135), - [anon_sym__alignof] = ACTIONS(1135), - [anon_sym_alignof] = ACTIONS(1135), - [anon_sym__Alignof] = ACTIONS(1135), - [anon_sym_offsetof] = ACTIONS(1135), - [anon_sym__Generic] = ACTIONS(1135), - [anon_sym_asm] = ACTIONS(1135), - [anon_sym___asm__] = ACTIONS(1135), - [sym_number_literal] = ACTIONS(1137), - [anon_sym_L_SQUOTE] = ACTIONS(1137), - [anon_sym_u_SQUOTE] = ACTIONS(1137), - [anon_sym_U_SQUOTE] = ACTIONS(1137), - [anon_sym_u8_SQUOTE] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_L_DQUOTE] = ACTIONS(1137), - [anon_sym_u_DQUOTE] = ACTIONS(1137), - [anon_sym_U_DQUOTE] = ACTIONS(1137), - [anon_sym_u8_DQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_true] = ACTIONS(1135), - [sym_false] = ACTIONS(1135), - [anon_sym_NULL] = ACTIONS(1135), - [anon_sym_nullptr] = ACTIONS(1135), + [238] = { + [ts_builtin_sym_end] = ACTIONS(1225), + [sym_identifier] = ACTIONS(1223), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), + [sym_preproc_directive] = ACTIONS(1223), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym___extension__] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1223), + [anon_sym_extern] = ACTIONS(1223), + [anon_sym___attribute__] = ACTIONS(1223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1223), + [anon_sym___cdecl] = ACTIONS(1223), + [anon_sym___clrcall] = ACTIONS(1223), + [anon_sym___stdcall] = ACTIONS(1223), + [anon_sym___fastcall] = ACTIONS(1223), + [anon_sym___thiscall] = ACTIONS(1223), + [anon_sym___vectorcall] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1223), + [anon_sym_unsigned] = ACTIONS(1223), + [anon_sym_long] = ACTIONS(1223), + [anon_sym_short] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_auto] = ACTIONS(1223), + [anon_sym_register] = ACTIONS(1223), + [anon_sym_inline] = ACTIONS(1223), + [anon_sym___inline] = ACTIONS(1223), + [anon_sym___inline__] = ACTIONS(1223), + [anon_sym___forceinline] = ACTIONS(1223), + [anon_sym_thread_local] = ACTIONS(1223), + [anon_sym___thread] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(1223), + [anon_sym_constexpr] = ACTIONS(1223), + [anon_sym_volatile] = ACTIONS(1223), + [anon_sym_restrict] = ACTIONS(1223), + [anon_sym___restrict__] = ACTIONS(1223), + [anon_sym__Atomic] = ACTIONS(1223), + [anon_sym__Noreturn] = ACTIONS(1223), + [anon_sym_noreturn] = ACTIONS(1223), + [anon_sym__Nonnull] = ACTIONS(1223), + [anon_sym_alignas] = ACTIONS(1223), + [anon_sym__Alignas] = ACTIONS(1223), + [sym_primitive_type] = ACTIONS(1223), + [anon_sym_enum] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_union] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_case] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_do] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_goto] = ACTIONS(1223), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1223), + [anon_sym___alignof__] = ACTIONS(1223), + [anon_sym___alignof] = ACTIONS(1223), + [anon_sym__alignof] = ACTIONS(1223), + [anon_sym_alignof] = ACTIONS(1223), + [anon_sym__Alignof] = ACTIONS(1223), + [anon_sym_offsetof] = ACTIONS(1223), + [anon_sym__Generic] = ACTIONS(1223), + [anon_sym_asm] = ACTIONS(1223), + [anon_sym___asm__] = ACTIONS(1223), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_L_SQUOTE] = ACTIONS(1225), + [anon_sym_u_SQUOTE] = ACTIONS(1225), + [anon_sym_U_SQUOTE] = ACTIONS(1225), + [anon_sym_u8_SQUOTE] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_L_DQUOTE] = ACTIONS(1225), + [anon_sym_u_DQUOTE] = ACTIONS(1225), + [anon_sym_U_DQUOTE] = ACTIONS(1225), + [anon_sym_u8_DQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [anon_sym_NULL] = ACTIONS(1223), + [anon_sym_nullptr] = ACTIONS(1223), [sym_comment] = ACTIONS(3), }, - [241] = { + [239] = { [ts_builtin_sym_end] = ACTIONS(1229), [sym_identifier] = ACTIONS(1227), [aux_sym_preproc_include_token1] = ACTIONS(1227), @@ -40611,6 +40673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1227), [anon_sym__Noreturn] = ACTIONS(1227), [anon_sym_noreturn] = ACTIONS(1227), + [anon_sym__Nonnull] = ACTIONS(1227), [anon_sym_alignas] = ACTIONS(1227), [anon_sym__Alignas] = ACTIONS(1227), [sym_primitive_type] = ACTIONS(1227), @@ -40660,7 +40723,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1227), [sym_comment] = ACTIONS(3), }, - [242] = { + [240] = { + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), + [sym_preproc_directive] = ACTIONS(1231), + [anon_sym_LPAREN2] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym___extension__] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1231), + [anon_sym_extern] = ACTIONS(1231), + [anon_sym___attribute__] = ACTIONS(1231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1231), + [anon_sym___cdecl] = ACTIONS(1231), + [anon_sym___clrcall] = ACTIONS(1231), + [anon_sym___stdcall] = ACTIONS(1231), + [anon_sym___fastcall] = ACTIONS(1231), + [anon_sym___thiscall] = ACTIONS(1231), + [anon_sym___vectorcall] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1231), + [anon_sym_unsigned] = ACTIONS(1231), + [anon_sym_long] = ACTIONS(1231), + [anon_sym_short] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1231), + [anon_sym_auto] = ACTIONS(1231), + [anon_sym_register] = ACTIONS(1231), + [anon_sym_inline] = ACTIONS(1231), + [anon_sym___inline] = ACTIONS(1231), + [anon_sym___inline__] = ACTIONS(1231), + [anon_sym___forceinline] = ACTIONS(1231), + [anon_sym_thread_local] = ACTIONS(1231), + [anon_sym___thread] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_constexpr] = ACTIONS(1231), + [anon_sym_volatile] = ACTIONS(1231), + [anon_sym_restrict] = ACTIONS(1231), + [anon_sym___restrict__] = ACTIONS(1231), + [anon_sym__Atomic] = ACTIONS(1231), + [anon_sym__Noreturn] = ACTIONS(1231), + [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym__Nonnull] = ACTIONS(1231), + [anon_sym_alignas] = ACTIONS(1231), + [anon_sym__Alignas] = ACTIONS(1231), + [sym_primitive_type] = ACTIONS(1231), + [anon_sym_enum] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_union] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_goto] = ACTIONS(1231), + [anon_sym___try] = ACTIONS(1231), + [anon_sym___leave] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_sizeof] = ACTIONS(1231), + [anon_sym___alignof__] = ACTIONS(1231), + [anon_sym___alignof] = ACTIONS(1231), + [anon_sym__alignof] = ACTIONS(1231), + [anon_sym_alignof] = ACTIONS(1231), + [anon_sym__Alignof] = ACTIONS(1231), + [anon_sym_offsetof] = ACTIONS(1231), + [anon_sym__Generic] = ACTIONS(1231), + [anon_sym_asm] = ACTIONS(1231), + [anon_sym___asm__] = ACTIONS(1231), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_L_SQUOTE] = ACTIONS(1233), + [anon_sym_u_SQUOTE] = ACTIONS(1233), + [anon_sym_U_SQUOTE] = ACTIONS(1233), + [anon_sym_u8_SQUOTE] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_L_DQUOTE] = ACTIONS(1233), + [anon_sym_u_DQUOTE] = ACTIONS(1233), + [anon_sym_U_DQUOTE] = ACTIONS(1233), + [anon_sym_u8_DQUOTE] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [anon_sym_NULL] = ACTIONS(1231), + [anon_sym_nullptr] = ACTIONS(1231), + [sym_comment] = ACTIONS(3), + }, + [241] = { + [ts_builtin_sym_end] = ACTIONS(1233), [sym_identifier] = ACTIONS(1231), [aux_sym_preproc_include_token1] = ACTIONS(1231), [aux_sym_preproc_def_token1] = ACTIONS(1231), @@ -40689,7 +40854,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1231), [anon_sym___vectorcall] = ACTIONS(1231), [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), [anon_sym_signed] = ACTIONS(1231), [anon_sym_unsigned] = ACTIONS(1231), [anon_sym_long] = ACTIONS(1231), @@ -40711,6 +40875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1231), [anon_sym__Noreturn] = ACTIONS(1231), [anon_sym_noreturn] = ACTIONS(1231), + [anon_sym__Nonnull] = ACTIONS(1231), [anon_sym_alignas] = ACTIONS(1231), [anon_sym__Alignas] = ACTIONS(1231), [sym_primitive_type] = ACTIONS(1231), @@ -40760,6 +40925,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1231), [sym_comment] = ACTIONS(3), }, + [242] = { + [sym_identifier] = ACTIONS(1127), + [aux_sym_preproc_include_token1] = ACTIONS(1127), + [aux_sym_preproc_def_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym___extension__] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym___attribute__] = ACTIONS(1127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), + [anon_sym___declspec] = ACTIONS(1127), + [anon_sym___cdecl] = ACTIONS(1127), + [anon_sym___clrcall] = ACTIONS(1127), + [anon_sym___stdcall] = ACTIONS(1127), + [anon_sym___fastcall] = ACTIONS(1127), + [anon_sym___thiscall] = ACTIONS(1127), + [anon_sym___vectorcall] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym___inline] = ACTIONS(1127), + [anon_sym___inline__] = ACTIONS(1127), + [anon_sym___forceinline] = ACTIONS(1127), + [anon_sym_thread_local] = ACTIONS(1127), + [anon_sym___thread] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_constexpr] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym___restrict__] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym__Noreturn] = ACTIONS(1127), + [anon_sym_noreturn] = ACTIONS(1127), + [anon_sym__Nonnull] = ACTIONS(1127), + [anon_sym_alignas] = ACTIONS(1127), + [anon_sym__Alignas] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym___try] = ACTIONS(1127), + [anon_sym___leave] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1127), + [anon_sym___alignof__] = ACTIONS(1127), + [anon_sym___alignof] = ACTIONS(1127), + [anon_sym__alignof] = ACTIONS(1127), + [anon_sym_alignof] = ACTIONS(1127), + [anon_sym__Alignof] = ACTIONS(1127), + [anon_sym_offsetof] = ACTIONS(1127), + [anon_sym__Generic] = ACTIONS(1127), + [anon_sym_asm] = ACTIONS(1127), + [anon_sym___asm__] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_L_SQUOTE] = ACTIONS(1129), + [anon_sym_u_SQUOTE] = ACTIONS(1129), + [anon_sym_U_SQUOTE] = ACTIONS(1129), + [anon_sym_u8_SQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_L_DQUOTE] = ACTIONS(1129), + [anon_sym_u_DQUOTE] = ACTIONS(1129), + [anon_sym_U_DQUOTE] = ACTIONS(1129), + [anon_sym_u8_DQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [anon_sym_NULL] = ACTIONS(1127), + [anon_sym_nullptr] = ACTIONS(1127), + [sym_comment] = ACTIONS(3), + }, [243] = { [ts_builtin_sym_end] = ACTIONS(1237), [sym_identifier] = ACTIONS(1235), @@ -40811,6 +41077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1235), [anon_sym__Noreturn] = ACTIONS(1235), [anon_sym_noreturn] = ACTIONS(1235), + [anon_sym__Nonnull] = ACTIONS(1235), [anon_sym_alignas] = ACTIONS(1235), [anon_sym__Alignas] = ACTIONS(1235), [sym_primitive_type] = ACTIONS(1235), @@ -40861,407 +41128,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1179), - [aux_sym_preproc_include_token1] = ACTIONS(1179), - [aux_sym_preproc_def_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), - [sym_preproc_directive] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym___extension__] = ACTIONS(1179), - [anon_sym_typedef] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym___attribute__] = ACTIONS(1179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), - [anon_sym___declspec] = ACTIONS(1179), - [anon_sym___cdecl] = ACTIONS(1179), - [anon_sym___clrcall] = ACTIONS(1179), - [anon_sym___stdcall] = ACTIONS(1179), - [anon_sym___fastcall] = ACTIONS(1179), - [anon_sym___thiscall] = ACTIONS(1179), - [anon_sym___vectorcall] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_signed] = ACTIONS(1179), - [anon_sym_unsigned] = ACTIONS(1179), - [anon_sym_long] = ACTIONS(1179), - [anon_sym_short] = ACTIONS(1179), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_auto] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_inline] = ACTIONS(1179), - [anon_sym___inline] = ACTIONS(1179), - [anon_sym___inline__] = ACTIONS(1179), - [anon_sym___forceinline] = ACTIONS(1179), - [anon_sym_thread_local] = ACTIONS(1179), - [anon_sym___thread] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_constexpr] = ACTIONS(1179), - [anon_sym_volatile] = ACTIONS(1179), - [anon_sym_restrict] = ACTIONS(1179), - [anon_sym___restrict__] = ACTIONS(1179), - [anon_sym__Atomic] = ACTIONS(1179), - [anon_sym__Noreturn] = ACTIONS(1179), - [anon_sym_noreturn] = ACTIONS(1179), - [anon_sym_alignas] = ACTIONS(1179), - [anon_sym__Alignas] = ACTIONS(1179), - [sym_primitive_type] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_goto] = ACTIONS(1179), - [anon_sym___try] = ACTIONS(1179), - [anon_sym___leave] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1181), - [anon_sym_sizeof] = ACTIONS(1179), - [anon_sym___alignof__] = ACTIONS(1179), - [anon_sym___alignof] = ACTIONS(1179), - [anon_sym__alignof] = ACTIONS(1179), - [anon_sym_alignof] = ACTIONS(1179), - [anon_sym__Alignof] = ACTIONS(1179), - [anon_sym_offsetof] = ACTIONS(1179), - [anon_sym__Generic] = ACTIONS(1179), - [anon_sym_asm] = ACTIONS(1179), - [anon_sym___asm__] = ACTIONS(1179), - [sym_number_literal] = ACTIONS(1181), - [anon_sym_L_SQUOTE] = ACTIONS(1181), - [anon_sym_u_SQUOTE] = ACTIONS(1181), - [anon_sym_U_SQUOTE] = ACTIONS(1181), - [anon_sym_u8_SQUOTE] = ACTIONS(1181), - [anon_sym_SQUOTE] = ACTIONS(1181), - [anon_sym_L_DQUOTE] = ACTIONS(1181), - [anon_sym_u_DQUOTE] = ACTIONS(1181), - [anon_sym_U_DQUOTE] = ACTIONS(1181), - [anon_sym_u8_DQUOTE] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1181), - [sym_true] = ACTIONS(1179), - [sym_false] = ACTIONS(1179), - [anon_sym_NULL] = ACTIONS(1179), - [anon_sym_nullptr] = ACTIONS(1179), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [sym_identifier] = ACTIONS(1139), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym___extension__] = ACTIONS(1139), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym___attribute__] = ACTIONS(1139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), - [anon_sym___declspec] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_signed] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym___inline] = ACTIONS(1139), - [anon_sym___inline__] = ACTIONS(1139), - [anon_sym___forceinline] = ACTIONS(1139), - [anon_sym_thread_local] = ACTIONS(1139), - [anon_sym___thread] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_constexpr] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym___restrict__] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym__Noreturn] = ACTIONS(1139), - [anon_sym_noreturn] = ACTIONS(1139), - [anon_sym_alignas] = ACTIONS(1139), - [anon_sym__Alignas] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1141), - [anon_sym_PLUS_PLUS] = ACTIONS(1141), - [anon_sym_sizeof] = ACTIONS(1139), - [anon_sym___alignof__] = ACTIONS(1139), - [anon_sym___alignof] = ACTIONS(1139), - [anon_sym__alignof] = ACTIONS(1139), - [anon_sym_alignof] = ACTIONS(1139), - [anon_sym__Alignof] = ACTIONS(1139), - [anon_sym_offsetof] = ACTIONS(1139), - [anon_sym__Generic] = ACTIONS(1139), - [anon_sym_asm] = ACTIONS(1139), - [anon_sym___asm__] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1141), - [anon_sym_L_SQUOTE] = ACTIONS(1141), - [anon_sym_u_SQUOTE] = ACTIONS(1141), - [anon_sym_U_SQUOTE] = ACTIONS(1141), - [anon_sym_u8_SQUOTE] = ACTIONS(1141), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_L_DQUOTE] = ACTIONS(1141), - [anon_sym_u_DQUOTE] = ACTIONS(1141), - [anon_sym_U_DQUOTE] = ACTIONS(1141), - [anon_sym_u8_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [anon_sym_NULL] = ACTIONS(1139), - [anon_sym_nullptr] = ACTIONS(1139), + [sym_identifier] = ACTIONS(1239), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), + [sym_preproc_directive] = ACTIONS(1239), + [anon_sym_LPAREN2] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym___extension__] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1239), + [anon_sym_extern] = ACTIONS(1239), + [anon_sym___attribute__] = ACTIONS(1239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1239), + [anon_sym___cdecl] = ACTIONS(1239), + [anon_sym___clrcall] = ACTIONS(1239), + [anon_sym___stdcall] = ACTIONS(1239), + [anon_sym___fastcall] = ACTIONS(1239), + [anon_sym___thiscall] = ACTIONS(1239), + [anon_sym___vectorcall] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1239), + [anon_sym_unsigned] = ACTIONS(1239), + [anon_sym_long] = ACTIONS(1239), + [anon_sym_short] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1239), + [anon_sym_auto] = ACTIONS(1239), + [anon_sym_register] = ACTIONS(1239), + [anon_sym_inline] = ACTIONS(1239), + [anon_sym___inline] = ACTIONS(1239), + [anon_sym___inline__] = ACTIONS(1239), + [anon_sym___forceinline] = ACTIONS(1239), + [anon_sym_thread_local] = ACTIONS(1239), + [anon_sym___thread] = ACTIONS(1239), + [anon_sym_const] = ACTIONS(1239), + [anon_sym_constexpr] = ACTIONS(1239), + [anon_sym_volatile] = ACTIONS(1239), + [anon_sym_restrict] = ACTIONS(1239), + [anon_sym___restrict__] = ACTIONS(1239), + [anon_sym__Atomic] = ACTIONS(1239), + [anon_sym__Noreturn] = ACTIONS(1239), + [anon_sym_noreturn] = ACTIONS(1239), + [anon_sym__Nonnull] = ACTIONS(1239), + [anon_sym_alignas] = ACTIONS(1239), + [anon_sym__Alignas] = ACTIONS(1239), + [sym_primitive_type] = ACTIONS(1239), + [anon_sym_enum] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_switch] = ACTIONS(1239), + [anon_sym_case] = ACTIONS(1239), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_goto] = ACTIONS(1239), + [anon_sym___try] = ACTIONS(1239), + [anon_sym___leave] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_sizeof] = ACTIONS(1239), + [anon_sym___alignof__] = ACTIONS(1239), + [anon_sym___alignof] = ACTIONS(1239), + [anon_sym__alignof] = ACTIONS(1239), + [anon_sym_alignof] = ACTIONS(1239), + [anon_sym__Alignof] = ACTIONS(1239), + [anon_sym_offsetof] = ACTIONS(1239), + [anon_sym__Generic] = ACTIONS(1239), + [anon_sym_asm] = ACTIONS(1239), + [anon_sym___asm__] = ACTIONS(1239), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1241), + [anon_sym_u_DQUOTE] = ACTIONS(1241), + [anon_sym_U_DQUOTE] = ACTIONS(1241), + [anon_sym_u8_DQUOTE] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [anon_sym_NULL] = ACTIONS(1239), + [anon_sym_nullptr] = ACTIONS(1239), [sym_comment] = ACTIONS(3), }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1149), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1147), - [aux_sym_preproc_def_token1] = ACTIONS(1147), - [aux_sym_preproc_if_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1147), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1147), - [sym_preproc_directive] = ACTIONS(1147), - [anon_sym_LPAREN2] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1149), - [anon_sym_TILDE] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1149), - [anon_sym_AMP] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym___extension__] = ACTIONS(1147), - [anon_sym_typedef] = ACTIONS(1147), - [anon_sym_extern] = ACTIONS(1147), - [anon_sym___attribute__] = ACTIONS(1147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1149), - [anon_sym___declspec] = ACTIONS(1147), - [anon_sym___cdecl] = ACTIONS(1147), - [anon_sym___clrcall] = ACTIONS(1147), - [anon_sym___stdcall] = ACTIONS(1147), - [anon_sym___fastcall] = ACTIONS(1147), - [anon_sym___thiscall] = ACTIONS(1147), - [anon_sym___vectorcall] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1149), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1147), - [anon_sym_auto] = ACTIONS(1147), - [anon_sym_register] = ACTIONS(1147), - [anon_sym_inline] = ACTIONS(1147), - [anon_sym___inline] = ACTIONS(1147), - [anon_sym___inline__] = ACTIONS(1147), - [anon_sym___forceinline] = ACTIONS(1147), - [anon_sym_thread_local] = ACTIONS(1147), - [anon_sym___thread] = ACTIONS(1147), - [anon_sym_const] = ACTIONS(1147), - [anon_sym_constexpr] = ACTIONS(1147), - [anon_sym_volatile] = ACTIONS(1147), - [anon_sym_restrict] = ACTIONS(1147), - [anon_sym___restrict__] = ACTIONS(1147), - [anon_sym__Atomic] = ACTIONS(1147), - [anon_sym__Noreturn] = ACTIONS(1147), - [anon_sym_noreturn] = ACTIONS(1147), - [anon_sym_alignas] = ACTIONS(1147), - [anon_sym__Alignas] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1147), - [anon_sym_enum] = ACTIONS(1147), - [anon_sym_struct] = ACTIONS(1147), - [anon_sym_union] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(1147), - [anon_sym_switch] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1147), - [anon_sym_default] = ACTIONS(1147), - [anon_sym_while] = ACTIONS(1147), - [anon_sym_do] = ACTIONS(1147), - [anon_sym_for] = ACTIONS(1147), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_break] = ACTIONS(1147), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1147), - [anon_sym___try] = ACTIONS(1147), - [anon_sym___leave] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_sizeof] = ACTIONS(1147), - [anon_sym___alignof__] = ACTIONS(1147), - [anon_sym___alignof] = ACTIONS(1147), - [anon_sym__alignof] = ACTIONS(1147), - [anon_sym_alignof] = ACTIONS(1147), - [anon_sym__Alignof] = ACTIONS(1147), - [anon_sym_offsetof] = ACTIONS(1147), - [anon_sym__Generic] = ACTIONS(1147), - [anon_sym_asm] = ACTIONS(1147), - [anon_sym___asm__] = ACTIONS(1147), - [sym_number_literal] = ACTIONS(1149), - [anon_sym_L_SQUOTE] = ACTIONS(1149), - [anon_sym_u_SQUOTE] = ACTIONS(1149), - [anon_sym_U_SQUOTE] = ACTIONS(1149), - [anon_sym_u8_SQUOTE] = ACTIONS(1149), - [anon_sym_SQUOTE] = ACTIONS(1149), - [anon_sym_L_DQUOTE] = ACTIONS(1149), - [anon_sym_u_DQUOTE] = ACTIONS(1149), - [anon_sym_U_DQUOTE] = ACTIONS(1149), - [anon_sym_u8_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [anon_sym_NULL] = ACTIONS(1147), - [anon_sym_nullptr] = ACTIONS(1147), + [245] = { + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1243), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1243), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1243), + [sym_preproc_directive] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym___extension__] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1243), + [anon_sym_extern] = ACTIONS(1243), + [anon_sym___attribute__] = ACTIONS(1243), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1243), + [anon_sym___clrcall] = ACTIONS(1243), + [anon_sym___stdcall] = ACTIONS(1243), + [anon_sym___fastcall] = ACTIONS(1243), + [anon_sym___thiscall] = ACTIONS(1243), + [anon_sym___vectorcall] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1243), + [anon_sym_unsigned] = ACTIONS(1243), + [anon_sym_long] = ACTIONS(1243), + [anon_sym_short] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1243), + [anon_sym_auto] = ACTIONS(1243), + [anon_sym_register] = ACTIONS(1243), + [anon_sym_inline] = ACTIONS(1243), + [anon_sym___inline] = ACTIONS(1243), + [anon_sym___inline__] = ACTIONS(1243), + [anon_sym___forceinline] = ACTIONS(1243), + [anon_sym_thread_local] = ACTIONS(1243), + [anon_sym___thread] = ACTIONS(1243), + [anon_sym_const] = ACTIONS(1243), + [anon_sym_constexpr] = ACTIONS(1243), + [anon_sym_volatile] = ACTIONS(1243), + [anon_sym_restrict] = ACTIONS(1243), + [anon_sym___restrict__] = ACTIONS(1243), + [anon_sym__Atomic] = ACTIONS(1243), + [anon_sym__Noreturn] = ACTIONS(1243), + [anon_sym_noreturn] = ACTIONS(1243), + [anon_sym__Nonnull] = ACTIONS(1243), + [anon_sym_alignas] = ACTIONS(1243), + [anon_sym__Alignas] = ACTIONS(1243), + [sym_primitive_type] = ACTIONS(1243), + [anon_sym_enum] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_switch] = ACTIONS(1243), + [anon_sym_case] = ACTIONS(1243), + [anon_sym_default] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_do] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_goto] = ACTIONS(1243), + [anon_sym___try] = ACTIONS(1243), + [anon_sym___leave] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_sizeof] = ACTIONS(1243), + [anon_sym___alignof__] = ACTIONS(1243), + [anon_sym___alignof] = ACTIONS(1243), + [anon_sym__alignof] = ACTIONS(1243), + [anon_sym_alignof] = ACTIONS(1243), + [anon_sym__Alignof] = ACTIONS(1243), + [anon_sym_offsetof] = ACTIONS(1243), + [anon_sym__Generic] = ACTIONS(1243), + [anon_sym_asm] = ACTIONS(1243), + [anon_sym___asm__] = ACTIONS(1243), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_L_SQUOTE] = ACTIONS(1245), + [anon_sym_u_SQUOTE] = ACTIONS(1245), + [anon_sym_U_SQUOTE] = ACTIONS(1245), + [anon_sym_u8_SQUOTE] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(1245), + [anon_sym_L_DQUOTE] = ACTIONS(1245), + [anon_sym_u_DQUOTE] = ACTIONS(1245), + [anon_sym_U_DQUOTE] = ACTIONS(1245), + [anon_sym_u8_DQUOTE] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [anon_sym_NULL] = ACTIONS(1243), + [anon_sym_nullptr] = ACTIONS(1243), [sym_comment] = ACTIONS(3), }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1223), - [aux_sym_preproc_include_token1] = ACTIONS(1223), - [aux_sym_preproc_def_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), - [sym_preproc_directive] = ACTIONS(1223), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym___extension__] = ACTIONS(1223), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym___attribute__] = ACTIONS(1223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1225), - [anon_sym___declspec] = ACTIONS(1223), - [anon_sym___cdecl] = ACTIONS(1223), - [anon_sym___clrcall] = ACTIONS(1223), - [anon_sym___stdcall] = ACTIONS(1223), - [anon_sym___fastcall] = ACTIONS(1223), - [anon_sym___thiscall] = ACTIONS(1223), - [anon_sym___vectorcall] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_signed] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [anon_sym___inline] = ACTIONS(1223), - [anon_sym___inline__] = ACTIONS(1223), - [anon_sym___forceinline] = ACTIONS(1223), - [anon_sym_thread_local] = ACTIONS(1223), - [anon_sym___thread] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_constexpr] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym___restrict__] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym__Noreturn] = ACTIONS(1223), - [anon_sym_noreturn] = ACTIONS(1223), - [anon_sym_alignas] = ACTIONS(1223), - [anon_sym__Alignas] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym___try] = ACTIONS(1223), - [anon_sym___leave] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1223), - [anon_sym___alignof__] = ACTIONS(1223), - [anon_sym___alignof] = ACTIONS(1223), - [anon_sym__alignof] = ACTIONS(1223), - [anon_sym_alignof] = ACTIONS(1223), - [anon_sym__Alignof] = ACTIONS(1223), - [anon_sym_offsetof] = ACTIONS(1223), - [anon_sym__Generic] = ACTIONS(1223), - [anon_sym_asm] = ACTIONS(1223), - [anon_sym___asm__] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_L_SQUOTE] = ACTIONS(1225), - [anon_sym_u_SQUOTE] = ACTIONS(1225), - [anon_sym_U_SQUOTE] = ACTIONS(1225), - [anon_sym_u8_SQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [anon_sym_NULL] = ACTIONS(1223), - [anon_sym_nullptr] = ACTIONS(1223), + [246] = { + [ts_builtin_sym_end] = ACTIONS(1129), + [sym_identifier] = ACTIONS(1127), + [aux_sym_preproc_include_token1] = ACTIONS(1127), + [aux_sym_preproc_def_token1] = ACTIONS(1127), + [aux_sym_preproc_if_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1127), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1127), + [sym_preproc_directive] = ACTIONS(1127), + [anon_sym_LPAREN2] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym___extension__] = ACTIONS(1127), + [anon_sym_typedef] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym___attribute__] = ACTIONS(1127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1129), + [anon_sym___declspec] = ACTIONS(1127), + [anon_sym___cdecl] = ACTIONS(1127), + [anon_sym___clrcall] = ACTIONS(1127), + [anon_sym___stdcall] = ACTIONS(1127), + [anon_sym___fastcall] = ACTIONS(1127), + [anon_sym___thiscall] = ACTIONS(1127), + [anon_sym___vectorcall] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_signed] = ACTIONS(1127), + [anon_sym_unsigned] = ACTIONS(1127), + [anon_sym_long] = ACTIONS(1127), + [anon_sym_short] = ACTIONS(1127), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_auto] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_inline] = ACTIONS(1127), + [anon_sym___inline] = ACTIONS(1127), + [anon_sym___inline__] = ACTIONS(1127), + [anon_sym___forceinline] = ACTIONS(1127), + [anon_sym_thread_local] = ACTIONS(1127), + [anon_sym___thread] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_constexpr] = ACTIONS(1127), + [anon_sym_volatile] = ACTIONS(1127), + [anon_sym_restrict] = ACTIONS(1127), + [anon_sym___restrict__] = ACTIONS(1127), + [anon_sym__Atomic] = ACTIONS(1127), + [anon_sym__Noreturn] = ACTIONS(1127), + [anon_sym_noreturn] = ACTIONS(1127), + [anon_sym__Nonnull] = ACTIONS(1127), + [anon_sym_alignas] = ACTIONS(1127), + [anon_sym__Alignas] = ACTIONS(1127), + [sym_primitive_type] = ACTIONS(1127), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1127), + [anon_sym_union] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_switch] = ACTIONS(1127), + [anon_sym_case] = ACTIONS(1127), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_goto] = ACTIONS(1127), + [anon_sym___try] = ACTIONS(1127), + [anon_sym___leave] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_sizeof] = ACTIONS(1127), + [anon_sym___alignof__] = ACTIONS(1127), + [anon_sym___alignof] = ACTIONS(1127), + [anon_sym__alignof] = ACTIONS(1127), + [anon_sym_alignof] = ACTIONS(1127), + [anon_sym__Alignof] = ACTIONS(1127), + [anon_sym_offsetof] = ACTIONS(1127), + [anon_sym__Generic] = ACTIONS(1127), + [anon_sym_asm] = ACTIONS(1127), + [anon_sym___asm__] = ACTIONS(1127), + [sym_number_literal] = ACTIONS(1129), + [anon_sym_L_SQUOTE] = ACTIONS(1129), + [anon_sym_u_SQUOTE] = ACTIONS(1129), + [anon_sym_U_SQUOTE] = ACTIONS(1129), + [anon_sym_u8_SQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1129), + [anon_sym_L_DQUOTE] = ACTIONS(1129), + [anon_sym_u_DQUOTE] = ACTIONS(1129), + [anon_sym_U_DQUOTE] = ACTIONS(1129), + [anon_sym_u8_DQUOTE] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [anon_sym_NULL] = ACTIONS(1127), + [anon_sym_nullptr] = ACTIONS(1127), [sym_comment] = ACTIONS(3), }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1133), + [247] = { [sym_identifier] = ACTIONS(1131), [aux_sym_preproc_include_token1] = ACTIONS(1131), [aux_sym_preproc_def_token1] = ACTIONS(1131), @@ -41290,6 +41459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1131), [anon_sym___vectorcall] = ACTIONS(1131), [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), [anon_sym_signed] = ACTIONS(1131), [anon_sym_unsigned] = ACTIONS(1131), [anon_sym_long] = ACTIONS(1131), @@ -41311,6 +41481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1131), [anon_sym__Noreturn] = ACTIONS(1131), [anon_sym_noreturn] = ACTIONS(1131), + [anon_sym__Nonnull] = ACTIONS(1131), [anon_sym_alignas] = ACTIONS(1131), [anon_sym__Alignas] = ACTIONS(1131), [sym_primitive_type] = ACTIONS(1131), @@ -41360,7 +41531,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1131), [sym_comment] = ACTIONS(3), }, - [249] = { + [248] = { + [ts_builtin_sym_end] = ACTIONS(1141), + [sym_identifier] = ACTIONS(1139), + [aux_sym_preproc_include_token1] = ACTIONS(1139), + [aux_sym_preproc_def_token1] = ACTIONS(1139), + [aux_sym_preproc_if_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), + [sym_preproc_directive] = ACTIONS(1139), + [anon_sym_LPAREN2] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym___extension__] = ACTIONS(1139), + [anon_sym_typedef] = ACTIONS(1139), + [anon_sym_extern] = ACTIONS(1139), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1141), + [anon_sym___declspec] = ACTIONS(1139), + [anon_sym___cdecl] = ACTIONS(1139), + [anon_sym___clrcall] = ACTIONS(1139), + [anon_sym___stdcall] = ACTIONS(1139), + [anon_sym___fastcall] = ACTIONS(1139), + [anon_sym___thiscall] = ACTIONS(1139), + [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_signed] = ACTIONS(1139), + [anon_sym_unsigned] = ACTIONS(1139), + [anon_sym_long] = ACTIONS(1139), + [anon_sym_short] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1139), + [anon_sym_auto] = ACTIONS(1139), + [anon_sym_register] = ACTIONS(1139), + [anon_sym_inline] = ACTIONS(1139), + [anon_sym___inline] = ACTIONS(1139), + [anon_sym___inline__] = ACTIONS(1139), + [anon_sym___forceinline] = ACTIONS(1139), + [anon_sym_thread_local] = ACTIONS(1139), + [anon_sym___thread] = ACTIONS(1139), + [anon_sym_const] = ACTIONS(1139), + [anon_sym_constexpr] = ACTIONS(1139), + [anon_sym_volatile] = ACTIONS(1139), + [anon_sym_restrict] = ACTIONS(1139), + [anon_sym___restrict__] = ACTIONS(1139), + [anon_sym__Atomic] = ACTIONS(1139), + [anon_sym__Noreturn] = ACTIONS(1139), + [anon_sym_noreturn] = ACTIONS(1139), + [anon_sym__Nonnull] = ACTIONS(1139), + [anon_sym_alignas] = ACTIONS(1139), + [anon_sym__Alignas] = ACTIONS(1139), + [sym_primitive_type] = ACTIONS(1139), + [anon_sym_enum] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_union] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(1139), + [anon_sym_default] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_do] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1139), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_sizeof] = ACTIONS(1139), + [anon_sym___alignof__] = ACTIONS(1139), + [anon_sym___alignof] = ACTIONS(1139), + [anon_sym__alignof] = ACTIONS(1139), + [anon_sym_alignof] = ACTIONS(1139), + [anon_sym__Alignof] = ACTIONS(1139), + [anon_sym_offsetof] = ACTIONS(1139), + [anon_sym__Generic] = ACTIONS(1139), + [anon_sym_asm] = ACTIONS(1139), + [anon_sym___asm__] = ACTIONS(1139), + [sym_number_literal] = ACTIONS(1141), + [anon_sym_L_SQUOTE] = ACTIONS(1141), + [anon_sym_u_SQUOTE] = ACTIONS(1141), + [anon_sym_U_SQUOTE] = ACTIONS(1141), + [anon_sym_u8_SQUOTE] = ACTIONS(1141), + [anon_sym_SQUOTE] = ACTIONS(1141), + [anon_sym_L_DQUOTE] = ACTIONS(1141), + [anon_sym_u_DQUOTE] = ACTIONS(1141), + [anon_sym_U_DQUOTE] = ACTIONS(1141), + [anon_sym_u8_DQUOTE] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_true] = ACTIONS(1139), + [sym_false] = ACTIONS(1139), + [anon_sym_NULL] = ACTIONS(1139), + [anon_sym_nullptr] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(1155), + [aux_sym_preproc_def_token1] = ACTIONS(1155), + [aux_sym_preproc_if_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), + [sym_preproc_directive] = ACTIONS(1155), + [anon_sym_LPAREN2] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym___extension__] = ACTIONS(1155), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1155), + [anon_sym___attribute__] = ACTIONS(1155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), + [anon_sym___declspec] = ACTIONS(1155), + [anon_sym___cdecl] = ACTIONS(1155), + [anon_sym___clrcall] = ACTIONS(1155), + [anon_sym___stdcall] = ACTIONS(1155), + [anon_sym___fastcall] = ACTIONS(1155), + [anon_sym___thiscall] = ACTIONS(1155), + [anon_sym___vectorcall] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(1155), + [anon_sym_unsigned] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_auto] = ACTIONS(1155), + [anon_sym_register] = ACTIONS(1155), + [anon_sym_inline] = ACTIONS(1155), + [anon_sym___inline] = ACTIONS(1155), + [anon_sym___inline__] = ACTIONS(1155), + [anon_sym___forceinline] = ACTIONS(1155), + [anon_sym_thread_local] = ACTIONS(1155), + [anon_sym___thread] = ACTIONS(1155), + [anon_sym_const] = ACTIONS(1155), + [anon_sym_constexpr] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_restrict] = ACTIONS(1155), + [anon_sym___restrict__] = ACTIONS(1155), + [anon_sym__Atomic] = ACTIONS(1155), + [anon_sym__Noreturn] = ACTIONS(1155), + [anon_sym_noreturn] = ACTIONS(1155), + [anon_sym__Nonnull] = ACTIONS(1155), + [anon_sym_alignas] = ACTIONS(1155), + [anon_sym__Alignas] = ACTIONS(1155), + [sym_primitive_type] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1155), + [anon_sym___try] = ACTIONS(1155), + [anon_sym___leave] = ACTIONS(1155), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_sizeof] = ACTIONS(1155), + [anon_sym___alignof__] = ACTIONS(1155), + [anon_sym___alignof] = ACTIONS(1155), + [anon_sym__alignof] = ACTIONS(1155), + [anon_sym_alignof] = ACTIONS(1155), + [anon_sym__Alignof] = ACTIONS(1155), + [anon_sym_offsetof] = ACTIONS(1155), + [anon_sym__Generic] = ACTIONS(1155), + [anon_sym_asm] = ACTIONS(1155), + [anon_sym___asm__] = ACTIONS(1155), + [sym_number_literal] = ACTIONS(1157), + [anon_sym_L_SQUOTE] = ACTIONS(1157), + [anon_sym_u_SQUOTE] = ACTIONS(1157), + [anon_sym_U_SQUOTE] = ACTIONS(1157), + [anon_sym_u8_SQUOTE] = ACTIONS(1157), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_L_DQUOTE] = ACTIONS(1157), + [anon_sym_u_DQUOTE] = ACTIONS(1157), + [anon_sym_U_DQUOTE] = ACTIONS(1157), + [anon_sym_u8_DQUOTE] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [anon_sym_NULL] = ACTIONS(1155), + [anon_sym_nullptr] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + }, + [250] = { [ts_builtin_sym_end] = ACTIONS(1137), [sym_identifier] = ACTIONS(1135), [aux_sym_preproc_include_token1] = ACTIONS(1135), @@ -41411,6 +41784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1135), [anon_sym__Noreturn] = ACTIONS(1135), [anon_sym_noreturn] = ACTIONS(1135), + [anon_sym__Nonnull] = ACTIONS(1135), [anon_sym_alignas] = ACTIONS(1135), [anon_sym__Alignas] = ACTIONS(1135), [sym_primitive_type] = ACTIONS(1135), @@ -41460,801 +41834,608 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1135), [sym_comment] = ACTIONS(3), }, - [250] = { - [sym_identifier] = ACTIONS(1125), - [aux_sym_preproc_include_token1] = ACTIONS(1125), - [aux_sym_preproc_def_token1] = ACTIONS(1125), - [aux_sym_preproc_if_token1] = ACTIONS(1125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1125), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1125), - [sym_preproc_directive] = ACTIONS(1125), - [anon_sym_LPAREN2] = ACTIONS(1123), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_STAR] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym___extension__] = ACTIONS(1125), - [anon_sym_typedef] = ACTIONS(1125), - [anon_sym_extern] = ACTIONS(1125), - [anon_sym___attribute__] = ACTIONS(1125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1123), - [anon_sym___declspec] = ACTIONS(1125), - [anon_sym___cdecl] = ACTIONS(1125), - [anon_sym___clrcall] = ACTIONS(1125), - [anon_sym___stdcall] = ACTIONS(1125), - [anon_sym___fastcall] = ACTIONS(1125), - [anon_sym___thiscall] = ACTIONS(1125), - [anon_sym___vectorcall] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [anon_sym_signed] = ACTIONS(1125), - [anon_sym_unsigned] = ACTIONS(1125), - [anon_sym_long] = ACTIONS(1125), - [anon_sym_short] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_auto] = ACTIONS(1125), - [anon_sym_register] = ACTIONS(1125), - [anon_sym_inline] = ACTIONS(1125), - [anon_sym___inline] = ACTIONS(1125), - [anon_sym___inline__] = ACTIONS(1125), - [anon_sym___forceinline] = ACTIONS(1125), - [anon_sym_thread_local] = ACTIONS(1125), - [anon_sym___thread] = ACTIONS(1125), - [anon_sym_const] = ACTIONS(1125), - [anon_sym_constexpr] = ACTIONS(1125), - [anon_sym_volatile] = ACTIONS(1125), - [anon_sym_restrict] = ACTIONS(1125), - [anon_sym___restrict__] = ACTIONS(1125), - [anon_sym__Atomic] = ACTIONS(1125), - [anon_sym__Noreturn] = ACTIONS(1125), - [anon_sym_noreturn] = ACTIONS(1125), - [anon_sym_alignas] = ACTIONS(1125), - [anon_sym__Alignas] = ACTIONS(1125), - [sym_primitive_type] = ACTIONS(1125), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_struct] = ACTIONS(1125), - [anon_sym_union] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1125), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_case] = ACTIONS(1125), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1125), - [anon_sym_do] = ACTIONS(1125), - [anon_sym_for] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1125), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1125), - [anon_sym_goto] = ACTIONS(1125), - [anon_sym___try] = ACTIONS(1125), - [anon_sym___leave] = ACTIONS(1125), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [anon_sym_sizeof] = ACTIONS(1125), - [anon_sym___alignof__] = ACTIONS(1125), - [anon_sym___alignof] = ACTIONS(1125), - [anon_sym__alignof] = ACTIONS(1125), - [anon_sym_alignof] = ACTIONS(1125), - [anon_sym__Alignof] = ACTIONS(1125), - [anon_sym_offsetof] = ACTIONS(1125), - [anon_sym__Generic] = ACTIONS(1125), - [anon_sym_asm] = ACTIONS(1125), - [anon_sym___asm__] = ACTIONS(1125), - [sym_number_literal] = ACTIONS(1123), - [anon_sym_L_SQUOTE] = ACTIONS(1123), - [anon_sym_u_SQUOTE] = ACTIONS(1123), - [anon_sym_U_SQUOTE] = ACTIONS(1123), - [anon_sym_u8_SQUOTE] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(1123), - [anon_sym_L_DQUOTE] = ACTIONS(1123), - [anon_sym_u_DQUOTE] = ACTIONS(1123), - [anon_sym_U_DQUOTE] = ACTIONS(1123), - [anon_sym_u8_DQUOTE] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1123), - [sym_true] = ACTIONS(1125), - [sym_false] = ACTIONS(1125), - [anon_sym_NULL] = ACTIONS(1125), - [anon_sym_nullptr] = ACTIONS(1125), - [sym_comment] = ACTIONS(3), - }, [251] = { - [sym_identifier] = ACTIONS(1155), - [aux_sym_preproc_include_token1] = ACTIONS(1155), - [aux_sym_preproc_def_token1] = ACTIONS(1155), - [aux_sym_preproc_if_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1155), - [sym_preproc_directive] = ACTIONS(1155), - [anon_sym_LPAREN2] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1155), - [anon_sym_STAR] = ACTIONS(1157), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym___extension__] = ACTIONS(1155), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1155), - [anon_sym___attribute__] = ACTIONS(1155), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1157), - [anon_sym___declspec] = ACTIONS(1155), - [anon_sym___cdecl] = ACTIONS(1155), - [anon_sym___clrcall] = ACTIONS(1155), - [anon_sym___stdcall] = ACTIONS(1155), - [anon_sym___fastcall] = ACTIONS(1155), - [anon_sym___thiscall] = ACTIONS(1155), - [anon_sym___vectorcall] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(1155), - [anon_sym_unsigned] = ACTIONS(1155), - [anon_sym_long] = ACTIONS(1155), - [anon_sym_short] = ACTIONS(1155), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_auto] = ACTIONS(1155), - [anon_sym_register] = ACTIONS(1155), - [anon_sym_inline] = ACTIONS(1155), - [anon_sym___inline] = ACTIONS(1155), - [anon_sym___inline__] = ACTIONS(1155), - [anon_sym___forceinline] = ACTIONS(1155), - [anon_sym_thread_local] = ACTIONS(1155), - [anon_sym___thread] = ACTIONS(1155), - [anon_sym_const] = ACTIONS(1155), - [anon_sym_constexpr] = ACTIONS(1155), - [anon_sym_volatile] = ACTIONS(1155), - [anon_sym_restrict] = ACTIONS(1155), - [anon_sym___restrict__] = ACTIONS(1155), - [anon_sym__Atomic] = ACTIONS(1155), - [anon_sym__Noreturn] = ACTIONS(1155), - [anon_sym_noreturn] = ACTIONS(1155), - [anon_sym_alignas] = ACTIONS(1155), - [anon_sym__Alignas] = ACTIONS(1155), - [sym_primitive_type] = ACTIONS(1155), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1155), - [anon_sym_if] = ACTIONS(1155), - [anon_sym_else] = ACTIONS(1155), - [anon_sym_switch] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1155), - [anon_sym_default] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1155), - [anon_sym_do] = ACTIONS(1155), - [anon_sym_for] = ACTIONS(1155), - [anon_sym_return] = ACTIONS(1155), - [anon_sym_break] = ACTIONS(1155), - [anon_sym_continue] = ACTIONS(1155), - [anon_sym_goto] = ACTIONS(1155), - [anon_sym___try] = ACTIONS(1155), - [anon_sym___leave] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1157), - [anon_sym_sizeof] = ACTIONS(1155), - [anon_sym___alignof__] = ACTIONS(1155), - [anon_sym___alignof] = ACTIONS(1155), - [anon_sym__alignof] = ACTIONS(1155), - [anon_sym_alignof] = ACTIONS(1155), - [anon_sym__Alignof] = ACTIONS(1155), - [anon_sym_offsetof] = ACTIONS(1155), - [anon_sym__Generic] = ACTIONS(1155), - [anon_sym_asm] = ACTIONS(1155), - [anon_sym___asm__] = ACTIONS(1155), - [sym_number_literal] = ACTIONS(1157), - [anon_sym_L_SQUOTE] = ACTIONS(1157), - [anon_sym_u_SQUOTE] = ACTIONS(1157), - [anon_sym_U_SQUOTE] = ACTIONS(1157), - [anon_sym_u8_SQUOTE] = ACTIONS(1157), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_L_DQUOTE] = ACTIONS(1157), - [anon_sym_u_DQUOTE] = ACTIONS(1157), - [anon_sym_U_DQUOTE] = ACTIONS(1157), - [anon_sym_u8_DQUOTE] = ACTIONS(1157), - [anon_sym_DQUOTE] = ACTIONS(1157), - [sym_true] = ACTIONS(1155), - [sym_false] = ACTIONS(1155), - [anon_sym_NULL] = ACTIONS(1155), - [anon_sym_nullptr] = ACTIONS(1155), + [sym_identifier] = ACTIONS(1167), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token2] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1167), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1167), + [sym_preproc_directive] = ACTIONS(1167), + [anon_sym_LPAREN2] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_SEMI] = ACTIONS(1169), + [anon_sym___extension__] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1167), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym___attribute__] = ACTIONS(1167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1169), + [anon_sym___declspec] = ACTIONS(1167), + [anon_sym___cdecl] = ACTIONS(1167), + [anon_sym___clrcall] = ACTIONS(1167), + [anon_sym___stdcall] = ACTIONS(1167), + [anon_sym___fastcall] = ACTIONS(1167), + [anon_sym___thiscall] = ACTIONS(1167), + [anon_sym___vectorcall] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1167), + [anon_sym_unsigned] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_auto] = ACTIONS(1167), + [anon_sym_register] = ACTIONS(1167), + [anon_sym_inline] = ACTIONS(1167), + [anon_sym___inline] = ACTIONS(1167), + [anon_sym___inline__] = ACTIONS(1167), + [anon_sym___forceinline] = ACTIONS(1167), + [anon_sym_thread_local] = ACTIONS(1167), + [anon_sym___thread] = ACTIONS(1167), + [anon_sym_const] = ACTIONS(1167), + [anon_sym_constexpr] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_restrict] = ACTIONS(1167), + [anon_sym___restrict__] = ACTIONS(1167), + [anon_sym__Atomic] = ACTIONS(1167), + [anon_sym__Noreturn] = ACTIONS(1167), + [anon_sym_noreturn] = ACTIONS(1167), + [anon_sym__Nonnull] = ACTIONS(1167), + [anon_sym_alignas] = ACTIONS(1167), + [anon_sym__Alignas] = ACTIONS(1167), + [sym_primitive_type] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_union] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_case] = ACTIONS(1167), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_goto] = ACTIONS(1167), + [anon_sym___try] = ACTIONS(1167), + [anon_sym___leave] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_sizeof] = ACTIONS(1167), + [anon_sym___alignof__] = ACTIONS(1167), + [anon_sym___alignof] = ACTIONS(1167), + [anon_sym__alignof] = ACTIONS(1167), + [anon_sym_alignof] = ACTIONS(1167), + [anon_sym__Alignof] = ACTIONS(1167), + [anon_sym_offsetof] = ACTIONS(1167), + [anon_sym__Generic] = ACTIONS(1167), + [anon_sym_asm] = ACTIONS(1167), + [anon_sym___asm__] = ACTIONS(1167), + [sym_number_literal] = ACTIONS(1169), + [anon_sym_L_SQUOTE] = ACTIONS(1169), + [anon_sym_u_SQUOTE] = ACTIONS(1169), + [anon_sym_U_SQUOTE] = ACTIONS(1169), + [anon_sym_u8_SQUOTE] = ACTIONS(1169), + [anon_sym_SQUOTE] = ACTIONS(1169), + [anon_sym_L_DQUOTE] = ACTIONS(1169), + [anon_sym_u_DQUOTE] = ACTIONS(1169), + [anon_sym_U_DQUOTE] = ACTIONS(1169), + [anon_sym_u8_DQUOTE] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [anon_sym_NULL] = ACTIONS(1167), + [anon_sym_nullptr] = ACTIONS(1167), [sym_comment] = ACTIONS(3), }, [252] = { - [sym_identifier] = ACTIONS(1331), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1331), - [anon_sym_LPAREN2] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym___extension__] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym___attribute__] = ACTIONS(1331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1331), - [anon_sym___cdecl] = ACTIONS(1331), - [anon_sym___clrcall] = ACTIONS(1331), - [anon_sym___stdcall] = ACTIONS(1331), - [anon_sym___fastcall] = ACTIONS(1331), - [anon_sym___thiscall] = ACTIONS(1331), - [anon_sym___vectorcall] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1331), - [anon_sym_unsigned] = ACTIONS(1331), - [anon_sym_long] = ACTIONS(1331), - [anon_sym_short] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_auto] = ACTIONS(1331), - [anon_sym_register] = ACTIONS(1331), - [anon_sym_inline] = ACTIONS(1331), - [anon_sym___inline] = ACTIONS(1331), - [anon_sym___inline__] = ACTIONS(1331), - [anon_sym___forceinline] = ACTIONS(1331), - [anon_sym_thread_local] = ACTIONS(1331), - [anon_sym___thread] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_constexpr] = ACTIONS(1331), - [anon_sym_volatile] = ACTIONS(1331), - [anon_sym_restrict] = ACTIONS(1331), - [anon_sym___restrict__] = ACTIONS(1331), - [anon_sym__Atomic] = ACTIONS(1331), - [anon_sym__Noreturn] = ACTIONS(1331), - [anon_sym_noreturn] = ACTIONS(1331), - [anon_sym_alignas] = ACTIONS(1331), - [anon_sym__Alignas] = ACTIONS(1331), - [sym_primitive_type] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_switch] = ACTIONS(1331), - [anon_sym_case] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_do] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_goto] = ACTIONS(1331), - [anon_sym___try] = ACTIONS(1331), - [anon_sym___leave] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1331), - [anon_sym___alignof__] = ACTIONS(1331), - [anon_sym___alignof] = ACTIONS(1331), - [anon_sym__alignof] = ACTIONS(1331), - [anon_sym_alignof] = ACTIONS(1331), - [anon_sym__Alignof] = ACTIONS(1331), - [anon_sym_offsetof] = ACTIONS(1331), - [anon_sym__Generic] = ACTIONS(1331), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym___asm__] = ACTIONS(1331), - [sym_number_literal] = ACTIONS(1333), - [anon_sym_L_SQUOTE] = ACTIONS(1333), - [anon_sym_u_SQUOTE] = ACTIONS(1333), - [anon_sym_U_SQUOTE] = ACTIONS(1333), - [anon_sym_u8_SQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_L_DQUOTE] = ACTIONS(1333), - [anon_sym_u_DQUOTE] = ACTIONS(1333), - [anon_sym_U_DQUOTE] = ACTIONS(1333), - [anon_sym_u8_DQUOTE] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [anon_sym_NULL] = ACTIONS(1331), - [anon_sym_nullptr] = ACTIONS(1331), - [sym_comment] = ACTIONS(3), - }, - [253] = { - [sym_identifier] = ACTIONS(1275), - [aux_sym_preproc_include_token1] = ACTIONS(1275), - [aux_sym_preproc_def_token1] = ACTIONS(1275), - [aux_sym_preproc_if_token1] = ACTIONS(1275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), - [sym_preproc_directive] = ACTIONS(1275), - [anon_sym_LPAREN2] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym___extension__] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym___attribute__] = ACTIONS(1275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), - [anon_sym___declspec] = ACTIONS(1275), - [anon_sym___cdecl] = ACTIONS(1275), - [anon_sym___clrcall] = ACTIONS(1275), - [anon_sym___stdcall] = ACTIONS(1275), - [anon_sym___fastcall] = ACTIONS(1275), - [anon_sym___thiscall] = ACTIONS(1275), - [anon_sym___vectorcall] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_signed] = ACTIONS(1275), - [anon_sym_unsigned] = ACTIONS(1275), - [anon_sym_long] = ACTIONS(1275), - [anon_sym_short] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_auto] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_inline] = ACTIONS(1275), - [anon_sym___inline] = ACTIONS(1275), - [anon_sym___inline__] = ACTIONS(1275), - [anon_sym___forceinline] = ACTIONS(1275), - [anon_sym_thread_local] = ACTIONS(1275), - [anon_sym___thread] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_constexpr] = ACTIONS(1275), - [anon_sym_volatile] = ACTIONS(1275), - [anon_sym_restrict] = ACTIONS(1275), - [anon_sym___restrict__] = ACTIONS(1275), - [anon_sym__Atomic] = ACTIONS(1275), - [anon_sym__Noreturn] = ACTIONS(1275), - [anon_sym_noreturn] = ACTIONS(1275), - [anon_sym_alignas] = ACTIONS(1275), - [anon_sym__Alignas] = ACTIONS(1275), - [sym_primitive_type] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_switch] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_goto] = ACTIONS(1275), - [anon_sym___try] = ACTIONS(1275), - [anon_sym___leave] = ACTIONS(1275), - [anon_sym_DASH_DASH] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym___alignof__] = ACTIONS(1275), - [anon_sym___alignof] = ACTIONS(1275), - [anon_sym__alignof] = ACTIONS(1275), - [anon_sym_alignof] = ACTIONS(1275), - [anon_sym__Alignof] = ACTIONS(1275), - [anon_sym_offsetof] = ACTIONS(1275), - [anon_sym__Generic] = ACTIONS(1275), - [anon_sym_asm] = ACTIONS(1275), - [anon_sym___asm__] = ACTIONS(1275), - [sym_number_literal] = ACTIONS(1277), - [anon_sym_L_SQUOTE] = ACTIONS(1277), - [anon_sym_u_SQUOTE] = ACTIONS(1277), - [anon_sym_U_SQUOTE] = ACTIONS(1277), - [anon_sym_u8_SQUOTE] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1277), - [anon_sym_L_DQUOTE] = ACTIONS(1277), - [anon_sym_u_DQUOTE] = ACTIONS(1277), - [anon_sym_U_DQUOTE] = ACTIONS(1277), - [anon_sym_u8_DQUOTE] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym_true] = ACTIONS(1275), - [sym_false] = ACTIONS(1275), - [anon_sym_NULL] = ACTIONS(1275), - [anon_sym_nullptr] = ACTIONS(1275), + [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_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), + [anon_sym__Nonnull] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, - [254] = { - [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_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), - [anon_sym_alignas] = ACTIONS(1353), - [anon_sym__Alignas] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym___try] = ACTIONS(1353), - [anon_sym___leave] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym___alignof__] = ACTIONS(1353), - [anon_sym___alignof] = ACTIONS(1353), - [anon_sym__alignof] = ACTIONS(1353), - [anon_sym_alignof] = ACTIONS(1353), - [anon_sym__Alignof] = ACTIONS(1353), - [anon_sym_offsetof] = ACTIONS(1353), - [anon_sym__Generic] = ACTIONS(1353), - [anon_sym_asm] = ACTIONS(1353), - [anon_sym___asm__] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_NULL] = ACTIONS(1353), - [anon_sym_nullptr] = ACTIONS(1353), + [253] = { + [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_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym__Nonnull] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(1315), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token2] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), - [sym_preproc_directive] = ACTIONS(1315), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym___extension__] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym___attribute__] = ACTIONS(1315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1315), - [anon_sym___cdecl] = ACTIONS(1315), - [anon_sym___clrcall] = ACTIONS(1315), - [anon_sym___stdcall] = ACTIONS(1315), - [anon_sym___fastcall] = ACTIONS(1315), - [anon_sym___thiscall] = ACTIONS(1315), - [anon_sym___vectorcall] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1315), - [anon_sym_unsigned] = ACTIONS(1315), - [anon_sym_long] = ACTIONS(1315), - [anon_sym_short] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_auto] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_inline] = ACTIONS(1315), - [anon_sym___inline] = ACTIONS(1315), - [anon_sym___inline__] = ACTIONS(1315), - [anon_sym___forceinline] = ACTIONS(1315), - [anon_sym_thread_local] = ACTIONS(1315), - [anon_sym___thread] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_constexpr] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym___restrict__] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [anon_sym__Noreturn] = ACTIONS(1315), - [anon_sym_noreturn] = ACTIONS(1315), - [anon_sym_alignas] = ACTIONS(1315), - [anon_sym__Alignas] = ACTIONS(1315), - [sym_primitive_type] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_goto] = ACTIONS(1315), - [anon_sym___try] = ACTIONS(1315), - [anon_sym___leave] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1315), - [anon_sym___alignof__] = ACTIONS(1315), - [anon_sym___alignof] = ACTIONS(1315), - [anon_sym__alignof] = ACTIONS(1315), - [anon_sym_alignof] = ACTIONS(1315), - [anon_sym__Alignof] = ACTIONS(1315), - [anon_sym_offsetof] = ACTIONS(1315), - [anon_sym__Generic] = ACTIONS(1315), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym___asm__] = ACTIONS(1315), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_L_SQUOTE] = ACTIONS(1317), - [anon_sym_u_SQUOTE] = ACTIONS(1317), - [anon_sym_U_SQUOTE] = ACTIONS(1317), - [anon_sym_u8_SQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_L_DQUOTE] = ACTIONS(1317), - [anon_sym_u_DQUOTE] = ACTIONS(1317), - [anon_sym_U_DQUOTE] = ACTIONS(1317), - [anon_sym_u8_DQUOTE] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [anon_sym_NULL] = ACTIONS(1315), - [anon_sym_nullptr] = ACTIONS(1315), + [254] = { + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym__Nonnull] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token2] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [anon_sym_LPAREN2] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym___extension__] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1319), - [anon_sym___cdecl] = ACTIONS(1319), - [anon_sym___clrcall] = ACTIONS(1319), - [anon_sym___stdcall] = ACTIONS(1319), - [anon_sym___fastcall] = ACTIONS(1319), - [anon_sym___thiscall] = ACTIONS(1319), - [anon_sym___vectorcall] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_auto] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym___inline] = ACTIONS(1319), - [anon_sym___inline__] = ACTIONS(1319), - [anon_sym___forceinline] = ACTIONS(1319), - [anon_sym_thread_local] = ACTIONS(1319), - [anon_sym___thread] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_restrict] = ACTIONS(1319), - [anon_sym___restrict__] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [anon_sym__Noreturn] = ACTIONS(1319), - [anon_sym_noreturn] = ACTIONS(1319), - [anon_sym_alignas] = ACTIONS(1319), - [anon_sym__Alignas] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_case] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [anon_sym___try] = ACTIONS(1319), - [anon_sym___leave] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym___alignof__] = ACTIONS(1319), - [anon_sym___alignof] = ACTIONS(1319), - [anon_sym__alignof] = ACTIONS(1319), - [anon_sym_alignof] = ACTIONS(1319), - [anon_sym__Alignof] = ACTIONS(1319), - [anon_sym_offsetof] = ACTIONS(1319), - [anon_sym__Generic] = ACTIONS(1319), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym___asm__] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1321), - [anon_sym_L_SQUOTE] = ACTIONS(1321), - [anon_sym_u_SQUOTE] = ACTIONS(1321), - [anon_sym_U_SQUOTE] = ACTIONS(1321), - [anon_sym_u8_SQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_L_DQUOTE] = ACTIONS(1321), - [anon_sym_u_DQUOTE] = ACTIONS(1321), - [anon_sym_U_DQUOTE] = ACTIONS(1321), - [anon_sym_u8_DQUOTE] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym_true] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [anon_sym_NULL] = ACTIONS(1319), - [anon_sym_nullptr] = ACTIONS(1319), + [255] = { + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym__Nonnull] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym___try] = ACTIONS(1271), + [anon_sym___leave] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_identifier] = ACTIONS(1251), - [aux_sym_preproc_include_token1] = ACTIONS(1251), - [aux_sym_preproc_def_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token2] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [sym_preproc_directive] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym___extension__] = ACTIONS(1251), - [anon_sym_typedef] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym___attribute__] = ACTIONS(1251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), - [anon_sym___declspec] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_signed] = ACTIONS(1251), - [anon_sym_unsigned] = ACTIONS(1251), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_short] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_auto] = ACTIONS(1251), - [anon_sym_register] = ACTIONS(1251), - [anon_sym_inline] = ACTIONS(1251), - [anon_sym___inline] = ACTIONS(1251), - [anon_sym___inline__] = ACTIONS(1251), - [anon_sym___forceinline] = ACTIONS(1251), - [anon_sym_thread_local] = ACTIONS(1251), - [anon_sym___thread] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_constexpr] = ACTIONS(1251), - [anon_sym_volatile] = ACTIONS(1251), - [anon_sym_restrict] = ACTIONS(1251), - [anon_sym___restrict__] = ACTIONS(1251), - [anon_sym__Atomic] = ACTIONS(1251), - [anon_sym__Noreturn] = ACTIONS(1251), - [anon_sym_noreturn] = ACTIONS(1251), - [anon_sym_alignas] = ACTIONS(1251), - [anon_sym__Alignas] = ACTIONS(1251), - [sym_primitive_type] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_goto] = ACTIONS(1251), - [anon_sym___try] = ACTIONS(1251), - [anon_sym___leave] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1251), - [anon_sym___alignof__] = ACTIONS(1251), - [anon_sym___alignof] = ACTIONS(1251), - [anon_sym__alignof] = ACTIONS(1251), - [anon_sym_alignof] = ACTIONS(1251), - [anon_sym__Alignof] = ACTIONS(1251), - [anon_sym_offsetof] = ACTIONS(1251), - [anon_sym__Generic] = ACTIONS(1251), - [anon_sym_asm] = ACTIONS(1251), - [anon_sym___asm__] = ACTIONS(1251), - [sym_number_literal] = ACTIONS(1253), - [anon_sym_L_SQUOTE] = ACTIONS(1253), - [anon_sym_u_SQUOTE] = ACTIONS(1253), - [anon_sym_U_SQUOTE] = ACTIONS(1253), - [anon_sym_u8_SQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_L_DQUOTE] = ACTIONS(1253), - [anon_sym_u_DQUOTE] = ACTIONS(1253), - [anon_sym_U_DQUOTE] = ACTIONS(1253), - [anon_sym_u8_DQUOTE] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_true] = ACTIONS(1251), - [sym_false] = ACTIONS(1251), - [anon_sym_NULL] = ACTIONS(1251), - [anon_sym_nullptr] = ACTIONS(1251), + [256] = { + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym__Nonnull] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, - [258] = { + [257] = { [sym_identifier] = ACTIONS(1279), [aux_sym_preproc_include_token1] = ACTIONS(1279), [aux_sym_preproc_def_token1] = ACTIONS(1279), @@ -42271,386 +42452,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1281), [anon_sym_SEMI] = ACTIONS(1281), [anon_sym___extension__] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym___attribute__] = ACTIONS(1279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), - [anon_sym___declspec] = ACTIONS(1279), - [anon_sym___cdecl] = ACTIONS(1279), - [anon_sym___clrcall] = ACTIONS(1279), - [anon_sym___stdcall] = ACTIONS(1279), - [anon_sym___fastcall] = ACTIONS(1279), - [anon_sym___thiscall] = ACTIONS(1279), - [anon_sym___vectorcall] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1281), - [anon_sym_signed] = ACTIONS(1279), - [anon_sym_unsigned] = ACTIONS(1279), - [anon_sym_long] = ACTIONS(1279), - [anon_sym_short] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_auto] = ACTIONS(1279), - [anon_sym_register] = ACTIONS(1279), - [anon_sym_inline] = ACTIONS(1279), - [anon_sym___inline] = ACTIONS(1279), - [anon_sym___inline__] = ACTIONS(1279), - [anon_sym___forceinline] = ACTIONS(1279), - [anon_sym_thread_local] = ACTIONS(1279), - [anon_sym___thread] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_constexpr] = ACTIONS(1279), - [anon_sym_volatile] = ACTIONS(1279), - [anon_sym_restrict] = ACTIONS(1279), - [anon_sym___restrict__] = ACTIONS(1279), - [anon_sym__Atomic] = ACTIONS(1279), - [anon_sym__Noreturn] = ACTIONS(1279), - [anon_sym_noreturn] = ACTIONS(1279), - [anon_sym_alignas] = ACTIONS(1279), - [anon_sym__Alignas] = ACTIONS(1279), - [sym_primitive_type] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1279), - [anon_sym_switch] = ACTIONS(1279), - [anon_sym_case] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_while] = ACTIONS(1279), - [anon_sym_do] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1279), - [anon_sym_continue] = ACTIONS(1279), - [anon_sym_goto] = ACTIONS(1279), - [anon_sym___try] = ACTIONS(1279), - [anon_sym___leave] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym___alignof__] = ACTIONS(1279), - [anon_sym___alignof] = ACTIONS(1279), - [anon_sym__alignof] = ACTIONS(1279), - [anon_sym_alignof] = ACTIONS(1279), - [anon_sym__Alignof] = ACTIONS(1279), - [anon_sym_offsetof] = ACTIONS(1279), - [anon_sym__Generic] = ACTIONS(1279), - [anon_sym_asm] = ACTIONS(1279), - [anon_sym___asm__] = ACTIONS(1279), - [sym_number_literal] = ACTIONS(1281), - [anon_sym_L_SQUOTE] = ACTIONS(1281), - [anon_sym_u_SQUOTE] = ACTIONS(1281), - [anon_sym_U_SQUOTE] = ACTIONS(1281), - [anon_sym_u8_SQUOTE] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1281), - [anon_sym_L_DQUOTE] = ACTIONS(1281), - [anon_sym_u_DQUOTE] = ACTIONS(1281), - [anon_sym_U_DQUOTE] = ACTIONS(1281), - [anon_sym_u8_DQUOTE] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [sym_true] = ACTIONS(1279), - [sym_false] = ACTIONS(1279), - [anon_sym_NULL] = ACTIONS(1279), - [anon_sym_nullptr] = ACTIONS(1279), - [sym_comment] = ACTIONS(3), - }, - [259] = { - [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_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), - [anon_sym_alignas] = ACTIONS(1365), - [anon_sym__Alignas] = ACTIONS(1365), - [sym_primitive_type] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_case] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_goto] = ACTIONS(1365), - [anon_sym___try] = ACTIONS(1365), - [anon_sym___leave] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1365), - [anon_sym___alignof__] = ACTIONS(1365), - [anon_sym___alignof] = ACTIONS(1365), - [anon_sym__alignof] = ACTIONS(1365), - [anon_sym_alignof] = ACTIONS(1365), - [anon_sym__Alignof] = ACTIONS(1365), - [anon_sym_offsetof] = ACTIONS(1365), - [anon_sym__Generic] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym___asm__] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1367), - [anon_sym_L_SQUOTE] = ACTIONS(1367), - [anon_sym_u_SQUOTE] = ACTIONS(1367), - [anon_sym_U_SQUOTE] = ACTIONS(1367), - [anon_sym_u8_SQUOTE] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_L_DQUOTE] = ACTIONS(1367), - [anon_sym_u_DQUOTE] = ACTIONS(1367), - [anon_sym_U_DQUOTE] = ACTIONS(1367), - [anon_sym_u8_DQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_true] = ACTIONS(1365), - [sym_false] = ACTIONS(1365), - [anon_sym_NULL] = ACTIONS(1365), - [anon_sym_nullptr] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - }, - [260] = { - [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_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), - [anon_sym_alignas] = ACTIONS(1357), - [anon_sym__Alignas] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym___try] = ACTIONS(1357), - [anon_sym___leave] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_sizeof] = ACTIONS(1357), - [anon_sym___alignof__] = ACTIONS(1357), - [anon_sym___alignof] = ACTIONS(1357), - [anon_sym__alignof] = ACTIONS(1357), - [anon_sym_alignof] = ACTIONS(1357), - [anon_sym__Alignof] = ACTIONS(1357), - [anon_sym_offsetof] = ACTIONS(1357), - [anon_sym__Generic] = ACTIONS(1357), - [anon_sym_asm] = ACTIONS(1357), - [anon_sym___asm__] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [anon_sym_NULL] = ACTIONS(1357), - [anon_sym_nullptr] = ACTIONS(1357), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym__Nonnull] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym___try] = ACTIONS(1279), + [anon_sym___leave] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, - [261] = { - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token2] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), - [anon_sym_unsigned] = ACTIONS(1327), - [anon_sym_long] = ACTIONS(1327), - [anon_sym_short] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_auto] = ACTIONS(1327), - [anon_sym_register] = ACTIONS(1327), - [anon_sym_inline] = ACTIONS(1327), - [anon_sym___inline] = ACTIONS(1327), - [anon_sym___inline__] = ACTIONS(1327), - [anon_sym___forceinline] = ACTIONS(1327), - [anon_sym_thread_local] = ACTIONS(1327), - [anon_sym___thread] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_constexpr] = ACTIONS(1327), - [anon_sym_volatile] = ACTIONS(1327), - [anon_sym_restrict] = ACTIONS(1327), - [anon_sym___restrict__] = ACTIONS(1327), - [anon_sym__Atomic] = ACTIONS(1327), - [anon_sym__Noreturn] = ACTIONS(1327), - [anon_sym_noreturn] = ACTIONS(1327), - [anon_sym_alignas] = ACTIONS(1327), - [anon_sym__Alignas] = ACTIONS(1327), - [sym_primitive_type] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1327), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_goto] = ACTIONS(1327), - [anon_sym___try] = ACTIONS(1327), - [anon_sym___leave] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(1327), - [anon_sym___alignof__] = ACTIONS(1327), - [anon_sym___alignof] = ACTIONS(1327), - [anon_sym__alignof] = ACTIONS(1327), - [anon_sym_alignof] = ACTIONS(1327), - [anon_sym__Alignof] = ACTIONS(1327), - [anon_sym_offsetof] = ACTIONS(1327), - [anon_sym__Generic] = ACTIONS(1327), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym___asm__] = ACTIONS(1327), - [sym_number_literal] = ACTIONS(1329), - [anon_sym_L_SQUOTE] = ACTIONS(1329), - [anon_sym_u_SQUOTE] = ACTIONS(1329), - [anon_sym_U_SQUOTE] = ACTIONS(1329), - [anon_sym_u8_SQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_L_DQUOTE] = ACTIONS(1329), - [anon_sym_u_DQUOTE] = ACTIONS(1329), - [anon_sym_U_DQUOTE] = ACTIONS(1329), - [anon_sym_u8_DQUOTE] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym_true] = ACTIONS(1327), - [sym_false] = ACTIONS(1327), - [anon_sym_NULL] = ACTIONS(1327), - [anon_sym_nullptr] = ACTIONS(1327), + [258] = { + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token2] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym__Nonnull] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, - [262] = { + [259] = { + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym__Nonnull] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + }, + [260] = { [sym_identifier] = ACTIONS(1343), [aux_sym_preproc_include_token1] = ACTIONS(1343), [aux_sym_preproc_def_token1] = ACTIONS(1343), @@ -42701,6 +42786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1343), [anon_sym__Noreturn] = ACTIONS(1343), [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym__Nonnull] = ACTIONS(1343), [anon_sym_alignas] = ACTIONS(1343), [anon_sym__Alignas] = ACTIONS(1343), [sym_primitive_type] = ACTIONS(1343), @@ -42749,502 +42835,807 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, + [261] = { + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym__Nonnull] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym__Nonnull] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), + [sym_comment] = ACTIONS(3), + }, [263] = { - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token2] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym___try] = ACTIONS(1295), - [anon_sym___leave] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), + [sym_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_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), + [anon_sym__Nonnull] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), [sym_comment] = ACTIONS(3), }, [264] = { - [sym_identifier] = ACTIONS(1255), - [aux_sym_preproc_include_token1] = ACTIONS(1255), - [aux_sym_preproc_def_token1] = ACTIONS(1255), - [aux_sym_preproc_if_token1] = ACTIONS(1255), - [aux_sym_preproc_if_token2] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), - [sym_preproc_directive] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym___extension__] = ACTIONS(1255), - [anon_sym_typedef] = ACTIONS(1255), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym___attribute__] = ACTIONS(1255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), - [anon_sym___declspec] = ACTIONS(1255), - [anon_sym___cdecl] = ACTIONS(1255), - [anon_sym___clrcall] = ACTIONS(1255), - [anon_sym___stdcall] = ACTIONS(1255), - [anon_sym___fastcall] = ACTIONS(1255), - [anon_sym___thiscall] = ACTIONS(1255), - [anon_sym___vectorcall] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_signed] = ACTIONS(1255), - [anon_sym_unsigned] = ACTIONS(1255), - [anon_sym_long] = ACTIONS(1255), - [anon_sym_short] = ACTIONS(1255), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_auto] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1255), - [anon_sym___inline] = ACTIONS(1255), - [anon_sym___inline__] = ACTIONS(1255), - [anon_sym___forceinline] = ACTIONS(1255), - [anon_sym_thread_local] = ACTIONS(1255), - [anon_sym___thread] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1255), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym___restrict__] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym__Noreturn] = ACTIONS(1255), - [anon_sym_noreturn] = ACTIONS(1255), - [anon_sym_alignas] = ACTIONS(1255), - [anon_sym__Alignas] = ACTIONS(1255), - [sym_primitive_type] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_goto] = ACTIONS(1255), - [anon_sym___try] = ACTIONS(1255), - [anon_sym___leave] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_sizeof] = ACTIONS(1255), - [anon_sym___alignof__] = ACTIONS(1255), - [anon_sym___alignof] = ACTIONS(1255), - [anon_sym__alignof] = ACTIONS(1255), - [anon_sym_alignof] = ACTIONS(1255), - [anon_sym__Alignof] = ACTIONS(1255), - [anon_sym_offsetof] = ACTIONS(1255), - [anon_sym__Generic] = ACTIONS(1255), - [anon_sym_asm] = ACTIONS(1255), - [anon_sym___asm__] = ACTIONS(1255), - [sym_number_literal] = ACTIONS(1257), - [anon_sym_L_SQUOTE] = ACTIONS(1257), - [anon_sym_u_SQUOTE] = ACTIONS(1257), - [anon_sym_U_SQUOTE] = ACTIONS(1257), - [anon_sym_u8_SQUOTE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1257), - [anon_sym_L_DQUOTE] = ACTIONS(1257), - [anon_sym_u_DQUOTE] = ACTIONS(1257), - [anon_sym_U_DQUOTE] = ACTIONS(1257), - [anon_sym_u8_DQUOTE] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [anon_sym_NULL] = ACTIONS(1255), - [anon_sym_nullptr] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - }, - [265] = { - [sym_identifier] = ACTIONS(1267), - [aux_sym_preproc_include_token1] = ACTIONS(1267), - [aux_sym_preproc_def_token1] = ACTIONS(1267), - [aux_sym_preproc_if_token1] = ACTIONS(1267), - [aux_sym_preproc_if_token2] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), - [sym_preproc_directive] = ACTIONS(1267), - [anon_sym_LPAREN2] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym___extension__] = ACTIONS(1267), - [anon_sym_typedef] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1267), - [anon_sym___attribute__] = ACTIONS(1267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), - [anon_sym___declspec] = ACTIONS(1267), - [anon_sym___cdecl] = ACTIONS(1267), - [anon_sym___clrcall] = ACTIONS(1267), - [anon_sym___stdcall] = ACTIONS(1267), - [anon_sym___fastcall] = ACTIONS(1267), - [anon_sym___thiscall] = ACTIONS(1267), - [anon_sym___vectorcall] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_signed] = ACTIONS(1267), - [anon_sym_unsigned] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_auto] = ACTIONS(1267), - [anon_sym_register] = ACTIONS(1267), - [anon_sym_inline] = ACTIONS(1267), - [anon_sym___inline] = ACTIONS(1267), - [anon_sym___inline__] = ACTIONS(1267), - [anon_sym___forceinline] = ACTIONS(1267), - [anon_sym_thread_local] = ACTIONS(1267), - [anon_sym___thread] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_constexpr] = ACTIONS(1267), - [anon_sym_volatile] = ACTIONS(1267), - [anon_sym_restrict] = ACTIONS(1267), - [anon_sym___restrict__] = ACTIONS(1267), - [anon_sym__Atomic] = ACTIONS(1267), - [anon_sym__Noreturn] = ACTIONS(1267), - [anon_sym_noreturn] = ACTIONS(1267), - [anon_sym_alignas] = ACTIONS(1267), - [anon_sym__Alignas] = ACTIONS(1267), - [sym_primitive_type] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_switch] = ACTIONS(1267), - [anon_sym_case] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_do] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_goto] = ACTIONS(1267), - [anon_sym___try] = ACTIONS(1267), - [anon_sym___leave] = ACTIONS(1267), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_sizeof] = ACTIONS(1267), - [anon_sym___alignof__] = ACTIONS(1267), - [anon_sym___alignof] = ACTIONS(1267), - [anon_sym__alignof] = ACTIONS(1267), - [anon_sym_alignof] = ACTIONS(1267), - [anon_sym__Alignof] = ACTIONS(1267), - [anon_sym_offsetof] = ACTIONS(1267), - [anon_sym__Generic] = ACTIONS(1267), - [anon_sym_asm] = ACTIONS(1267), - [anon_sym___asm__] = ACTIONS(1267), - [sym_number_literal] = ACTIONS(1269), - [anon_sym_L_SQUOTE] = ACTIONS(1269), - [anon_sym_u_SQUOTE] = ACTIONS(1269), - [anon_sym_U_SQUOTE] = ACTIONS(1269), - [anon_sym_u8_SQUOTE] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_L_DQUOTE] = ACTIONS(1269), - [anon_sym_u_DQUOTE] = ACTIONS(1269), - [anon_sym_U_DQUOTE] = ACTIONS(1269), - [anon_sym_u8_DQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [sym_true] = ACTIONS(1267), - [sym_false] = ACTIONS(1267), - [anon_sym_NULL] = ACTIONS(1267), - [anon_sym_nullptr] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym__Nonnull] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token2] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym__Nonnull] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [266] = { - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym___try] = ACTIONS(1295), - [anon_sym___leave] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token2] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym__Nonnull] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, [267] = { - [sym_identifier] = ACTIONS(1283), - [aux_sym_preproc_include_token1] = ACTIONS(1283), - [aux_sym_preproc_def_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token2] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_LPAREN2] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym___extension__] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym___attribute__] = ACTIONS(1283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), - [anon_sym___declspec] = ACTIONS(1283), - [anon_sym___cdecl] = ACTIONS(1283), - [anon_sym___clrcall] = ACTIONS(1283), - [anon_sym___stdcall] = ACTIONS(1283), - [anon_sym___fastcall] = ACTIONS(1283), - [anon_sym___thiscall] = ACTIONS(1283), - [anon_sym___vectorcall] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_signed] = ACTIONS(1283), - [anon_sym_unsigned] = ACTIONS(1283), - [anon_sym_long] = ACTIONS(1283), - [anon_sym_short] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_auto] = ACTIONS(1283), - [anon_sym_register] = ACTIONS(1283), - [anon_sym_inline] = ACTIONS(1283), - [anon_sym___inline] = ACTIONS(1283), - [anon_sym___inline__] = ACTIONS(1283), - [anon_sym___forceinline] = ACTIONS(1283), - [anon_sym_thread_local] = ACTIONS(1283), - [anon_sym___thread] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_constexpr] = ACTIONS(1283), - [anon_sym_volatile] = ACTIONS(1283), - [anon_sym_restrict] = ACTIONS(1283), - [anon_sym___restrict__] = ACTIONS(1283), - [anon_sym__Atomic] = ACTIONS(1283), - [anon_sym__Noreturn] = ACTIONS(1283), - [anon_sym_noreturn] = ACTIONS(1283), - [anon_sym_alignas] = ACTIONS(1283), - [anon_sym__Alignas] = ACTIONS(1283), - [sym_primitive_type] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [anon_sym_if] = ACTIONS(1283), - [anon_sym_switch] = ACTIONS(1283), - [anon_sym_case] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_while] = ACTIONS(1283), - [anon_sym_do] = ACTIONS(1283), - [anon_sym_for] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1283), - [anon_sym_continue] = ACTIONS(1283), - [anon_sym_goto] = ACTIONS(1283), - [anon_sym___try] = ACTIONS(1283), - [anon_sym___leave] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym___alignof__] = ACTIONS(1283), - [anon_sym___alignof] = ACTIONS(1283), - [anon_sym__alignof] = ACTIONS(1283), - [anon_sym_alignof] = ACTIONS(1283), - [anon_sym__Alignof] = ACTIONS(1283), - [anon_sym_offsetof] = ACTIONS(1283), - [anon_sym__Generic] = ACTIONS(1283), - [anon_sym_asm] = ACTIONS(1283), - [anon_sym___asm__] = ACTIONS(1283), - [sym_number_literal] = ACTIONS(1285), - [anon_sym_L_SQUOTE] = ACTIONS(1285), - [anon_sym_u_SQUOTE] = ACTIONS(1285), - [anon_sym_U_SQUOTE] = ACTIONS(1285), - [anon_sym_u8_SQUOTE] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_L_DQUOTE] = ACTIONS(1285), - [anon_sym_u_DQUOTE] = ACTIONS(1285), - [anon_sym_U_DQUOTE] = ACTIONS(1285), - [anon_sym_u8_DQUOTE] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [anon_sym_NULL] = ACTIONS(1283), - [anon_sym_nullptr] = ACTIONS(1283), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym__Nonnull] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym___try] = ACTIONS(1315), + [anon_sym___leave] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, [268] = { + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token2] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym__Nonnull] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym___try] = ACTIONS(1279), + [anon_sym___leave] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), + [sym_comment] = ACTIONS(3), + }, + [269] = { [sym_identifier] = ACTIONS(1291), [aux_sym_preproc_include_token1] = ACTIONS(1291), [aux_sym_preproc_def_token1] = ACTIONS(1291), @@ -43295,6 +43686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1291), [anon_sym__Noreturn] = ACTIONS(1291), [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym__Nonnull] = ACTIONS(1291), [anon_sym_alignas] = ACTIONS(1291), [anon_sym__Alignas] = ACTIONS(1291), [sym_primitive_type] = ACTIONS(1291), @@ -43343,308 +43735,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, - [269] = { - [sym_identifier] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token2] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym___extension__] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1311), - [anon_sym___cdecl] = ACTIONS(1311), - [anon_sym___clrcall] = ACTIONS(1311), - [anon_sym___stdcall] = ACTIONS(1311), - [anon_sym___fastcall] = ACTIONS(1311), - [anon_sym___thiscall] = ACTIONS(1311), - [anon_sym___vectorcall] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___inline] = ACTIONS(1311), - [anon_sym___inline__] = ACTIONS(1311), - [anon_sym___forceinline] = ACTIONS(1311), - [anon_sym_thread_local] = ACTIONS(1311), - [anon_sym___thread] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_constexpr] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym___restrict__] = ACTIONS(1311), - [anon_sym__Atomic] = ACTIONS(1311), - [anon_sym__Noreturn] = ACTIONS(1311), - [anon_sym_noreturn] = ACTIONS(1311), - [anon_sym_alignas] = ACTIONS(1311), - [anon_sym__Alignas] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym___try] = ACTIONS(1311), - [anon_sym___leave] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym___alignof__] = ACTIONS(1311), - [anon_sym___alignof] = ACTIONS(1311), - [anon_sym__alignof] = ACTIONS(1311), - [anon_sym_alignof] = ACTIONS(1311), - [anon_sym__Alignof] = ACTIONS(1311), - [anon_sym_offsetof] = ACTIONS(1311), - [anon_sym__Generic] = ACTIONS(1311), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym___asm__] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_L_SQUOTE] = ACTIONS(1313), - [anon_sym_u_SQUOTE] = ACTIONS(1313), - [anon_sym_U_SQUOTE] = ACTIONS(1313), - [anon_sym_u8_SQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_L_DQUOTE] = ACTIONS(1313), - [anon_sym_u_DQUOTE] = ACTIONS(1313), - [anon_sym_U_DQUOTE] = ACTIONS(1313), - [anon_sym_u8_DQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - }, [270] = { - [sym_identifier] = ACTIONS(1331), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token2] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1331), - [anon_sym_LPAREN2] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym___extension__] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym___attribute__] = ACTIONS(1331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1331), - [anon_sym___cdecl] = ACTIONS(1331), - [anon_sym___clrcall] = ACTIONS(1331), - [anon_sym___stdcall] = ACTIONS(1331), - [anon_sym___fastcall] = ACTIONS(1331), - [anon_sym___thiscall] = ACTIONS(1331), - [anon_sym___vectorcall] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1331), - [anon_sym_unsigned] = ACTIONS(1331), - [anon_sym_long] = ACTIONS(1331), - [anon_sym_short] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_auto] = ACTIONS(1331), - [anon_sym_register] = ACTIONS(1331), - [anon_sym_inline] = ACTIONS(1331), - [anon_sym___inline] = ACTIONS(1331), - [anon_sym___inline__] = ACTIONS(1331), - [anon_sym___forceinline] = ACTIONS(1331), - [anon_sym_thread_local] = ACTIONS(1331), - [anon_sym___thread] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_constexpr] = ACTIONS(1331), - [anon_sym_volatile] = ACTIONS(1331), - [anon_sym_restrict] = ACTIONS(1331), - [anon_sym___restrict__] = ACTIONS(1331), - [anon_sym__Atomic] = ACTIONS(1331), - [anon_sym__Noreturn] = ACTIONS(1331), - [anon_sym_noreturn] = ACTIONS(1331), - [anon_sym_alignas] = ACTIONS(1331), - [anon_sym__Alignas] = ACTIONS(1331), - [sym_primitive_type] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_switch] = ACTIONS(1331), - [anon_sym_case] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_do] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_goto] = ACTIONS(1331), - [anon_sym___try] = ACTIONS(1331), - [anon_sym___leave] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1331), - [anon_sym___alignof__] = ACTIONS(1331), - [anon_sym___alignof] = ACTIONS(1331), - [anon_sym__alignof] = ACTIONS(1331), - [anon_sym_alignof] = ACTIONS(1331), - [anon_sym__Alignof] = ACTIONS(1331), - [anon_sym_offsetof] = ACTIONS(1331), - [anon_sym__Generic] = ACTIONS(1331), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym___asm__] = ACTIONS(1331), - [sym_number_literal] = ACTIONS(1333), - [anon_sym_L_SQUOTE] = ACTIONS(1333), - [anon_sym_u_SQUOTE] = ACTIONS(1333), - [anon_sym_U_SQUOTE] = ACTIONS(1333), - [anon_sym_u8_SQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_L_DQUOTE] = ACTIONS(1333), - [anon_sym_u_DQUOTE] = ACTIONS(1333), - [anon_sym_U_DQUOTE] = ACTIONS(1333), - [anon_sym_u8_DQUOTE] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [anon_sym_NULL] = ACTIONS(1331), - [anon_sym_nullptr] = ACTIONS(1331), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym___try] = ACTIONS(1267), + [anon_sym___leave] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, [271] = { - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token2] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), - [anon_sym___vectorcall] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___inline] = ACTIONS(1339), - [anon_sym___inline__] = ACTIONS(1339), - [anon_sym___forceinline] = ACTIONS(1339), - [anon_sym_thread_local] = ACTIONS(1339), - [anon_sym___thread] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_constexpr] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym___restrict__] = ACTIONS(1339), - [anon_sym__Atomic] = ACTIONS(1339), - [anon_sym__Noreturn] = ACTIONS(1339), - [anon_sym_noreturn] = ACTIONS(1339), - [anon_sym_alignas] = ACTIONS(1339), - [anon_sym__Alignas] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [anon_sym___try] = ACTIONS(1339), - [anon_sym___leave] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym___alignof__] = ACTIONS(1339), - [anon_sym___alignof] = ACTIONS(1339), - [anon_sym__alignof] = ACTIONS(1339), - [anon_sym_alignof] = ACTIONS(1339), - [anon_sym__Alignof] = ACTIONS(1339), - [anon_sym_offsetof] = ACTIONS(1339), - [anon_sym__Generic] = ACTIONS(1339), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym___asm__] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_L_SQUOTE] = ACTIONS(1341), - [anon_sym_u_SQUOTE] = ACTIONS(1341), - [anon_sym_U_SQUOTE] = ACTIONS(1341), - [anon_sym_u8_SQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_L_DQUOTE] = ACTIONS(1341), - [anon_sym_u_DQUOTE] = ACTIONS(1341), - [anon_sym_U_DQUOTE] = ACTIONS(1341), - [anon_sym_u8_DQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_NULL] = ACTIONS(1339), - [anon_sym_nullptr] = ACTIONS(1339), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token2] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym__Nonnull] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1251), + [anon_sym___leave] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, [272] = { + [sym_identifier] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym___extension__] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1311), + [anon_sym___cdecl] = ACTIONS(1311), + [anon_sym___clrcall] = ACTIONS(1311), + [anon_sym___stdcall] = ACTIONS(1311), + [anon_sym___fastcall] = ACTIONS(1311), + [anon_sym___thiscall] = ACTIONS(1311), + [anon_sym___vectorcall] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym___inline] = ACTIONS(1311), + [anon_sym___inline__] = ACTIONS(1311), + [anon_sym___forceinline] = ACTIONS(1311), + [anon_sym_thread_local] = ACTIONS(1311), + [anon_sym___thread] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_constexpr] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym___restrict__] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym__Noreturn] = ACTIONS(1311), + [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym__Nonnull] = ACTIONS(1311), + [anon_sym_alignas] = ACTIONS(1311), + [anon_sym__Alignas] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym___try] = ACTIONS(1311), + [anon_sym___leave] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), + [sym_comment] = ACTIONS(3), + }, + [273] = { [sym_identifier] = ACTIONS(1255), [aux_sym_preproc_include_token1] = ACTIONS(1255), [aux_sym_preproc_def_token1] = ACTIONS(1255), [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token2] = ACTIONS(1255), [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), [sym_preproc_directive] = ACTIONS(1255), @@ -43669,7 +44065,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1255), [anon_sym___vectorcall] = ACTIONS(1255), [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), [anon_sym_signed] = ACTIONS(1255), [anon_sym_unsigned] = ACTIONS(1255), [anon_sym_long] = ACTIONS(1255), @@ -43691,6 +44086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1255), [anon_sym__Noreturn] = ACTIONS(1255), [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym__Nonnull] = ACTIONS(1255), [anon_sym_alignas] = ACTIONS(1255), [anon_sym__Alignas] = ACTIONS(1255), [sym_primitive_type] = ACTIONS(1255), @@ -43739,301 +44135,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym___try] = ACTIONS(1335), - [anon_sym___leave] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - }, [274] = { - [sym_identifier] = ACTIONS(1299), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_LPAREN2] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym___extension__] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym___attribute__] = ACTIONS(1299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1299), - [anon_sym___cdecl] = ACTIONS(1299), - [anon_sym___clrcall] = ACTIONS(1299), - [anon_sym___stdcall] = ACTIONS(1299), - [anon_sym___fastcall] = ACTIONS(1299), - [anon_sym___thiscall] = ACTIONS(1299), - [anon_sym___vectorcall] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1299), - [anon_sym_unsigned] = ACTIONS(1299), - [anon_sym_long] = ACTIONS(1299), - [anon_sym_short] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_auto] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_inline] = ACTIONS(1299), - [anon_sym___inline] = ACTIONS(1299), - [anon_sym___inline__] = ACTIONS(1299), - [anon_sym___forceinline] = ACTIONS(1299), - [anon_sym_thread_local] = ACTIONS(1299), - [anon_sym___thread] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_constexpr] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(1299), - [anon_sym_restrict] = ACTIONS(1299), - [anon_sym___restrict__] = ACTIONS(1299), - [anon_sym__Atomic] = ACTIONS(1299), - [anon_sym__Noreturn] = ACTIONS(1299), - [anon_sym_noreturn] = ACTIONS(1299), - [anon_sym_alignas] = ACTIONS(1299), - [anon_sym__Alignas] = ACTIONS(1299), - [sym_primitive_type] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_switch] = ACTIONS(1299), - [anon_sym_case] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_goto] = ACTIONS(1299), - [anon_sym___try] = ACTIONS(1299), - [anon_sym___leave] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_sizeof] = ACTIONS(1299), - [anon_sym___alignof__] = ACTIONS(1299), - [anon_sym___alignof] = ACTIONS(1299), - [anon_sym__alignof] = ACTIONS(1299), - [anon_sym_alignof] = ACTIONS(1299), - [anon_sym__Alignof] = ACTIONS(1299), - [anon_sym_offsetof] = ACTIONS(1299), - [anon_sym__Generic] = ACTIONS(1299), - [anon_sym_asm] = ACTIONS(1299), - [anon_sym___asm__] = ACTIONS(1299), - [sym_number_literal] = ACTIONS(1301), - [anon_sym_L_SQUOTE] = ACTIONS(1301), - [anon_sym_u_SQUOTE] = ACTIONS(1301), - [anon_sym_U_SQUOTE] = ACTIONS(1301), - [anon_sym_u8_SQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_L_DQUOTE] = ACTIONS(1301), - [anon_sym_u_DQUOTE] = ACTIONS(1301), - [anon_sym_U_DQUOTE] = ACTIONS(1301), - [anon_sym_u8_DQUOTE] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [sym_true] = ACTIONS(1299), - [sym_false] = ACTIONS(1299), - [anon_sym_NULL] = ACTIONS(1299), - [anon_sym_nullptr] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token2] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym__Nonnull] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym___try] = ACTIONS(1295), + [anon_sym___leave] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, [275] = { - [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_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), - [anon_sym_alignas] = ACTIONS(1353), - [anon_sym__Alignas] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym___try] = ACTIONS(1353), - [anon_sym___leave] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_sizeof] = ACTIONS(1353), - [anon_sym___alignof__] = ACTIONS(1353), - [anon_sym___alignof] = ACTIONS(1353), - [anon_sym__alignof] = ACTIONS(1353), - [anon_sym_alignof] = ACTIONS(1353), - [anon_sym__Alignof] = ACTIONS(1353), - [anon_sym_offsetof] = ACTIONS(1353), - [anon_sym__Generic] = ACTIONS(1353), - [anon_sym_asm] = ACTIONS(1353), - [anon_sym___asm__] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [anon_sym_NULL] = ACTIONS(1353), - [anon_sym_nullptr] = ACTIONS(1353), + [sym_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_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), + [anon_sym__Nonnull] = ACTIONS(1357), + [anon_sym_alignas] = ACTIONS(1357), + [anon_sym__Alignas] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym___try] = ACTIONS(1357), + [anon_sym___leave] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym___alignof__] = ACTIONS(1357), + [anon_sym___alignof] = ACTIONS(1357), + [anon_sym__alignof] = ACTIONS(1357), + [anon_sym_alignof] = ACTIONS(1357), + [anon_sym__Alignof] = ACTIONS(1357), + [anon_sym_offsetof] = ACTIONS(1357), + [anon_sym__Generic] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym___asm__] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1359), + [anon_sym_L_SQUOTE] = ACTIONS(1359), + [anon_sym_u_SQUOTE] = ACTIONS(1359), + [anon_sym_U_SQUOTE] = ACTIONS(1359), + [anon_sym_u8_SQUOTE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_L_DQUOTE] = ACTIONS(1359), + [anon_sym_u_DQUOTE] = ACTIONS(1359), + [anon_sym_U_DQUOTE] = ACTIONS(1359), + [anon_sym_u8_DQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_NULL] = ACTIONS(1357), + [anon_sym_nullptr] = ACTIONS(1357), [sym_comment] = ACTIONS(3), }, [276] = { @@ -44066,472 +44365,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1305), [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1303), - [anon_sym_unsigned] = ACTIONS(1303), - [anon_sym_long] = ACTIONS(1303), - [anon_sym_short] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_auto] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_inline] = ACTIONS(1303), - [anon_sym___inline] = ACTIONS(1303), - [anon_sym___inline__] = ACTIONS(1303), - [anon_sym___forceinline] = ACTIONS(1303), - [anon_sym_thread_local] = ACTIONS(1303), - [anon_sym___thread] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_constexpr] = ACTIONS(1303), - [anon_sym_volatile] = ACTIONS(1303), - [anon_sym_restrict] = ACTIONS(1303), - [anon_sym___restrict__] = ACTIONS(1303), - [anon_sym__Atomic] = ACTIONS(1303), - [anon_sym__Noreturn] = ACTIONS(1303), - [anon_sym_noreturn] = ACTIONS(1303), - [anon_sym_alignas] = ACTIONS(1303), - [anon_sym__Alignas] = ACTIONS(1303), - [sym_primitive_type] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_goto] = ACTIONS(1303), - [anon_sym___try] = ACTIONS(1303), - [anon_sym___leave] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_sizeof] = ACTIONS(1303), - [anon_sym___alignof__] = ACTIONS(1303), - [anon_sym___alignof] = ACTIONS(1303), - [anon_sym__alignof] = ACTIONS(1303), - [anon_sym_alignof] = ACTIONS(1303), - [anon_sym__Alignof] = ACTIONS(1303), - [anon_sym_offsetof] = ACTIONS(1303), - [anon_sym__Generic] = ACTIONS(1303), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym___asm__] = ACTIONS(1303), - [sym_number_literal] = ACTIONS(1305), - [anon_sym_L_SQUOTE] = ACTIONS(1305), - [anon_sym_u_SQUOTE] = ACTIONS(1305), - [anon_sym_U_SQUOTE] = ACTIONS(1305), - [anon_sym_u8_SQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_L_DQUOTE] = ACTIONS(1305), - [anon_sym_u_DQUOTE] = ACTIONS(1305), - [anon_sym_U_DQUOTE] = ACTIONS(1305), - [anon_sym_u8_DQUOTE] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [anon_sym_NULL] = ACTIONS(1303), - [anon_sym_nullptr] = ACTIONS(1303), - [sym_comment] = ACTIONS(3), - }, - [277] = { - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym___try] = ACTIONS(1307), - [anon_sym___leave] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), - [sym_comment] = ACTIONS(3), - }, - [278] = { - [sym_identifier] = ACTIONS(1283), - [aux_sym_preproc_include_token1] = ACTIONS(1283), - [aux_sym_preproc_def_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_LPAREN2] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym___extension__] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym___attribute__] = ACTIONS(1283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), - [anon_sym___declspec] = ACTIONS(1283), - [anon_sym___cdecl] = ACTIONS(1283), - [anon_sym___clrcall] = ACTIONS(1283), - [anon_sym___stdcall] = ACTIONS(1283), - [anon_sym___fastcall] = ACTIONS(1283), - [anon_sym___thiscall] = ACTIONS(1283), - [anon_sym___vectorcall] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1285), - [anon_sym_signed] = ACTIONS(1283), - [anon_sym_unsigned] = ACTIONS(1283), - [anon_sym_long] = ACTIONS(1283), - [anon_sym_short] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_auto] = ACTIONS(1283), - [anon_sym_register] = ACTIONS(1283), - [anon_sym_inline] = ACTIONS(1283), - [anon_sym___inline] = ACTIONS(1283), - [anon_sym___inline__] = ACTIONS(1283), - [anon_sym___forceinline] = ACTIONS(1283), - [anon_sym_thread_local] = ACTIONS(1283), - [anon_sym___thread] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_constexpr] = ACTIONS(1283), - [anon_sym_volatile] = ACTIONS(1283), - [anon_sym_restrict] = ACTIONS(1283), - [anon_sym___restrict__] = ACTIONS(1283), - [anon_sym__Atomic] = ACTIONS(1283), - [anon_sym__Noreturn] = ACTIONS(1283), - [anon_sym_noreturn] = ACTIONS(1283), - [anon_sym_alignas] = ACTIONS(1283), - [anon_sym__Alignas] = ACTIONS(1283), - [sym_primitive_type] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [anon_sym_if] = ACTIONS(1283), - [anon_sym_switch] = ACTIONS(1283), - [anon_sym_case] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_while] = ACTIONS(1283), - [anon_sym_do] = ACTIONS(1283), - [anon_sym_for] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1283), - [anon_sym_continue] = ACTIONS(1283), - [anon_sym_goto] = ACTIONS(1283), - [anon_sym___try] = ACTIONS(1283), - [anon_sym___leave] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym___alignof__] = ACTIONS(1283), - [anon_sym___alignof] = ACTIONS(1283), - [anon_sym__alignof] = ACTIONS(1283), - [anon_sym_alignof] = ACTIONS(1283), - [anon_sym__Alignof] = ACTIONS(1283), - [anon_sym_offsetof] = ACTIONS(1283), - [anon_sym__Generic] = ACTIONS(1283), - [anon_sym_asm] = ACTIONS(1283), - [anon_sym___asm__] = ACTIONS(1283), - [sym_number_literal] = ACTIONS(1285), - [anon_sym_L_SQUOTE] = ACTIONS(1285), - [anon_sym_u_SQUOTE] = ACTIONS(1285), - [anon_sym_U_SQUOTE] = ACTIONS(1285), - [anon_sym_u8_SQUOTE] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_L_DQUOTE] = ACTIONS(1285), - [anon_sym_u_DQUOTE] = ACTIONS(1285), - [anon_sym_U_DQUOTE] = ACTIONS(1285), - [anon_sym_u8_DQUOTE] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [anon_sym_NULL] = ACTIONS(1283), - [anon_sym_nullptr] = ACTIONS(1283), - [sym_comment] = ACTIONS(3), - }, - [279] = { - [sym_identifier] = ACTIONS(1267), - [aux_sym_preproc_include_token1] = ACTIONS(1267), - [aux_sym_preproc_def_token1] = ACTIONS(1267), - [aux_sym_preproc_if_token1] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), - [sym_preproc_directive] = ACTIONS(1267), - [anon_sym_LPAREN2] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym___extension__] = ACTIONS(1267), - [anon_sym_typedef] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1267), - [anon_sym___attribute__] = ACTIONS(1267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), - [anon_sym___declspec] = ACTIONS(1267), - [anon_sym___cdecl] = ACTIONS(1267), - [anon_sym___clrcall] = ACTIONS(1267), - [anon_sym___stdcall] = ACTIONS(1267), - [anon_sym___fastcall] = ACTIONS(1267), - [anon_sym___thiscall] = ACTIONS(1267), - [anon_sym___vectorcall] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_signed] = ACTIONS(1267), - [anon_sym_unsigned] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_auto] = ACTIONS(1267), - [anon_sym_register] = ACTIONS(1267), - [anon_sym_inline] = ACTIONS(1267), - [anon_sym___inline] = ACTIONS(1267), - [anon_sym___inline__] = ACTIONS(1267), - [anon_sym___forceinline] = ACTIONS(1267), - [anon_sym_thread_local] = ACTIONS(1267), - [anon_sym___thread] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_constexpr] = ACTIONS(1267), - [anon_sym_volatile] = ACTIONS(1267), - [anon_sym_restrict] = ACTIONS(1267), - [anon_sym___restrict__] = ACTIONS(1267), - [anon_sym__Atomic] = ACTIONS(1267), - [anon_sym__Noreturn] = ACTIONS(1267), - [anon_sym_noreturn] = ACTIONS(1267), - [anon_sym_alignas] = ACTIONS(1267), - [anon_sym__Alignas] = ACTIONS(1267), - [sym_primitive_type] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_switch] = ACTIONS(1267), - [anon_sym_case] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_do] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_goto] = ACTIONS(1267), - [anon_sym___try] = ACTIONS(1267), - [anon_sym___leave] = ACTIONS(1267), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_sizeof] = ACTIONS(1267), - [anon_sym___alignof__] = ACTIONS(1267), - [anon_sym___alignof] = ACTIONS(1267), - [anon_sym__alignof] = ACTIONS(1267), - [anon_sym_alignof] = ACTIONS(1267), - [anon_sym__Alignof] = ACTIONS(1267), - [anon_sym_offsetof] = ACTIONS(1267), - [anon_sym__Generic] = ACTIONS(1267), - [anon_sym_asm] = ACTIONS(1267), - [anon_sym___asm__] = ACTIONS(1267), - [sym_number_literal] = ACTIONS(1269), - [anon_sym_L_SQUOTE] = ACTIONS(1269), - [anon_sym_u_SQUOTE] = ACTIONS(1269), - [anon_sym_U_SQUOTE] = ACTIONS(1269), - [anon_sym_u8_SQUOTE] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_L_DQUOTE] = ACTIONS(1269), - [anon_sym_u_DQUOTE] = ACTIONS(1269), - [anon_sym_U_DQUOTE] = ACTIONS(1269), - [anon_sym_u8_DQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [sym_true] = ACTIONS(1267), - [sym_false] = ACTIONS(1267), - [anon_sym_NULL] = ACTIONS(1267), - [anon_sym_nullptr] = ACTIONS(1267), - [sym_comment] = ACTIONS(3), - }, - [280] = { - [sym_identifier] = ACTIONS(1271), - [aux_sym_preproc_include_token1] = ACTIONS(1271), - [aux_sym_preproc_def_token1] = ACTIONS(1271), - [aux_sym_preproc_if_token1] = ACTIONS(1271), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), - [sym_preproc_directive] = ACTIONS(1271), - [anon_sym_LPAREN2] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym___extension__] = ACTIONS(1271), - [anon_sym_typedef] = ACTIONS(1271), - [anon_sym_extern] = ACTIONS(1271), - [anon_sym___attribute__] = ACTIONS(1271), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), - [anon_sym___declspec] = ACTIONS(1271), - [anon_sym___cdecl] = ACTIONS(1271), - [anon_sym___clrcall] = ACTIONS(1271), - [anon_sym___stdcall] = ACTIONS(1271), - [anon_sym___fastcall] = ACTIONS(1271), - [anon_sym___thiscall] = ACTIONS(1271), - [anon_sym___vectorcall] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_signed] = ACTIONS(1271), - [anon_sym_unsigned] = ACTIONS(1271), - [anon_sym_long] = ACTIONS(1271), - [anon_sym_short] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_auto] = ACTIONS(1271), - [anon_sym_register] = ACTIONS(1271), - [anon_sym_inline] = ACTIONS(1271), - [anon_sym___inline] = ACTIONS(1271), - [anon_sym___inline__] = ACTIONS(1271), - [anon_sym___forceinline] = ACTIONS(1271), - [anon_sym_thread_local] = ACTIONS(1271), - [anon_sym___thread] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_constexpr] = ACTIONS(1271), - [anon_sym_volatile] = ACTIONS(1271), - [anon_sym_restrict] = ACTIONS(1271), - [anon_sym___restrict__] = ACTIONS(1271), - [anon_sym__Atomic] = ACTIONS(1271), - [anon_sym__Noreturn] = ACTIONS(1271), - [anon_sym_noreturn] = ACTIONS(1271), - [anon_sym_alignas] = ACTIONS(1271), - [anon_sym__Alignas] = ACTIONS(1271), - [sym_primitive_type] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_switch] = ACTIONS(1271), - [anon_sym_case] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_do] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_goto] = ACTIONS(1271), - [anon_sym___try] = ACTIONS(1271), - [anon_sym___leave] = ACTIONS(1271), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1271), - [anon_sym___alignof__] = ACTIONS(1271), - [anon_sym___alignof] = ACTIONS(1271), - [anon_sym__alignof] = ACTIONS(1271), - [anon_sym_alignof] = ACTIONS(1271), - [anon_sym__Alignof] = ACTIONS(1271), - [anon_sym_offsetof] = ACTIONS(1271), - [anon_sym__Generic] = ACTIONS(1271), - [anon_sym_asm] = ACTIONS(1271), - [anon_sym___asm__] = ACTIONS(1271), - [sym_number_literal] = ACTIONS(1273), - [anon_sym_L_SQUOTE] = ACTIONS(1273), - [anon_sym_u_SQUOTE] = ACTIONS(1273), - [anon_sym_U_SQUOTE] = ACTIONS(1273), - [anon_sym_u8_SQUOTE] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1273), - [anon_sym_L_DQUOTE] = ACTIONS(1273), - [anon_sym_u_DQUOTE] = ACTIONS(1273), - [anon_sym_U_DQUOTE] = ACTIONS(1273), - [anon_sym_u8_DQUOTE] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [anon_sym_NULL] = ACTIONS(1271), - [anon_sym_nullptr] = ACTIONS(1271), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym__Nonnull] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym___try] = ACTIONS(1303), + [anon_sym___leave] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, - [281] = { + [277] = { [sym_identifier] = ACTIONS(1315), [aux_sym_preproc_include_token1] = ACTIONS(1315), [aux_sym_preproc_def_token1] = ACTIONS(1315), @@ -44582,6 +44486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1315), [anon_sym__Noreturn] = ACTIONS(1315), [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym__Nonnull] = ACTIONS(1315), [anon_sym_alignas] = ACTIONS(1315), [anon_sym__Alignas] = ACTIONS(1315), [sym_primitive_type] = ACTIONS(1315), @@ -44630,7 +44535,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1315), [sym_comment] = ACTIONS(3), }, - [282] = { + [278] = { + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym__Nonnull] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), + [sym_comment] = ACTIONS(3), + }, + [279] = { + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym__Nonnull] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym___try] = ACTIONS(1259), + [anon_sym___leave] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + }, + [280] = { + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym__Nonnull] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym___try] = ACTIONS(1339), + [anon_sym___leave] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), + [sym_comment] = ACTIONS(3), + }, + [281] = { [sym_identifier] = ACTIONS(1319), [aux_sym_preproc_include_token1] = ACTIONS(1319), [aux_sym_preproc_def_token1] = ACTIONS(1319), @@ -44681,6 +44886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1319), [anon_sym__Noreturn] = ACTIONS(1319), [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym__Nonnull] = ACTIONS(1319), [anon_sym_alignas] = ACTIONS(1319), [anon_sym__Alignas] = ACTIONS(1319), [sym_primitive_type] = ACTIONS(1319), @@ -44729,7 +44935,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, - [283] = { + [282] = { + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym__Nonnull] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym___try] = ACTIONS(1323), + [anon_sym___leave] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym__Nonnull] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(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(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + }, + [284] = { + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym__Nonnull] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + }, + [285] = { [sym_identifier] = ACTIONS(1251), [aux_sym_preproc_include_token1] = ACTIONS(1251), [aux_sym_preproc_def_token1] = ACTIONS(1251), @@ -44780,6 +45286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1251), [anon_sym__Noreturn] = ACTIONS(1251), [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym__Nonnull] = ACTIONS(1251), [anon_sym_alignas] = ACTIONS(1251), [anon_sym__Alignas] = ACTIONS(1251), [sym_primitive_type] = ACTIONS(1251), @@ -44828,304 +45335,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1251), [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_identifier] = ACTIONS(1347), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token2] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), - [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1347), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym___inline] = ACTIONS(1347), - [anon_sym___inline__] = ACTIONS(1347), - [anon_sym___forceinline] = ACTIONS(1347), - [anon_sym_thread_local] = ACTIONS(1347), - [anon_sym___thread] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_constexpr] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym___restrict__] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym__Noreturn] = ACTIONS(1347), - [anon_sym_noreturn] = ACTIONS(1347), - [anon_sym_alignas] = ACTIONS(1347), - [anon_sym__Alignas] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_switch] = ACTIONS(1347), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_goto] = ACTIONS(1347), - [anon_sym___try] = ACTIONS(1347), - [anon_sym___leave] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1347), - [anon_sym___alignof__] = ACTIONS(1347), - [anon_sym___alignof] = ACTIONS(1347), - [anon_sym__alignof] = ACTIONS(1347), - [anon_sym_alignof] = ACTIONS(1347), - [anon_sym__Alignof] = ACTIONS(1347), - [anon_sym_offsetof] = ACTIONS(1347), - [anon_sym__Generic] = ACTIONS(1347), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym___asm__] = ACTIONS(1347), - [sym_number_literal] = ACTIONS(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(1347), - [sym_false] = ACTIONS(1347), - [anon_sym_NULL] = ACTIONS(1347), - [anon_sym_nullptr] = ACTIONS(1347), - [sym_comment] = ACTIONS(3), - }, - [285] = { - [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_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), - [anon_sym_alignas] = ACTIONS(1365), - [anon_sym__Alignas] = ACTIONS(1365), - [sym_primitive_type] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_case] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_goto] = ACTIONS(1365), - [anon_sym___try] = ACTIONS(1365), - [anon_sym___leave] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1365), - [anon_sym___alignof__] = ACTIONS(1365), - [anon_sym___alignof] = ACTIONS(1365), - [anon_sym__alignof] = ACTIONS(1365), - [anon_sym_alignof] = ACTIONS(1365), - [anon_sym__Alignof] = ACTIONS(1365), - [anon_sym_offsetof] = ACTIONS(1365), - [anon_sym__Generic] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym___asm__] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1367), - [anon_sym_L_SQUOTE] = ACTIONS(1367), - [anon_sym_u_SQUOTE] = ACTIONS(1367), - [anon_sym_U_SQUOTE] = ACTIONS(1367), - [anon_sym_u8_SQUOTE] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_L_DQUOTE] = ACTIONS(1367), - [anon_sym_u_DQUOTE] = ACTIONS(1367), - [anon_sym_U_DQUOTE] = ACTIONS(1367), - [anon_sym_u8_DQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_true] = ACTIONS(1365), - [sym_false] = ACTIONS(1365), - [anon_sym_NULL] = ACTIONS(1365), - [anon_sym_nullptr] = ACTIONS(1365), + [286] = { + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym__Nonnull] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym___try] = ACTIONS(1335), + [anon_sym___leave] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, - [286] = { - [sym_identifier] = ACTIONS(1287), - [aux_sym_preproc_include_token1] = ACTIONS(1287), - [aux_sym_preproc_def_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token2] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), - [sym_preproc_directive] = ACTIONS(1287), - [anon_sym_LPAREN2] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym___extension__] = ACTIONS(1287), - [anon_sym_typedef] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1287), - [anon_sym___attribute__] = ACTIONS(1287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), - [anon_sym___declspec] = ACTIONS(1287), - [anon_sym___cdecl] = ACTIONS(1287), - [anon_sym___clrcall] = ACTIONS(1287), - [anon_sym___stdcall] = ACTIONS(1287), - [anon_sym___fastcall] = ACTIONS(1287), - [anon_sym___thiscall] = ACTIONS(1287), - [anon_sym___vectorcall] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_signed] = ACTIONS(1287), - [anon_sym_unsigned] = ACTIONS(1287), - [anon_sym_long] = ACTIONS(1287), - [anon_sym_short] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_auto] = ACTIONS(1287), - [anon_sym_register] = ACTIONS(1287), - [anon_sym_inline] = ACTIONS(1287), - [anon_sym___inline] = ACTIONS(1287), - [anon_sym___inline__] = ACTIONS(1287), - [anon_sym___forceinline] = ACTIONS(1287), - [anon_sym_thread_local] = ACTIONS(1287), - [anon_sym___thread] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_constexpr] = ACTIONS(1287), - [anon_sym_volatile] = ACTIONS(1287), - [anon_sym_restrict] = ACTIONS(1287), - [anon_sym___restrict__] = ACTIONS(1287), - [anon_sym__Atomic] = ACTIONS(1287), - [anon_sym__Noreturn] = ACTIONS(1287), - [anon_sym_noreturn] = ACTIONS(1287), - [anon_sym_alignas] = ACTIONS(1287), - [anon_sym__Alignas] = ACTIONS(1287), - [sym_primitive_type] = ACTIONS(1287), - [anon_sym_enum] = ACTIONS(1287), - [anon_sym_struct] = ACTIONS(1287), - [anon_sym_union] = ACTIONS(1287), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_switch] = ACTIONS(1287), - [anon_sym_case] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1287), - [anon_sym_while] = ACTIONS(1287), - [anon_sym_do] = ACTIONS(1287), - [anon_sym_for] = ACTIONS(1287), - [anon_sym_return] = ACTIONS(1287), - [anon_sym_break] = ACTIONS(1287), - [anon_sym_continue] = ACTIONS(1287), - [anon_sym_goto] = ACTIONS(1287), - [anon_sym___try] = ACTIONS(1287), - [anon_sym___leave] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1287), - [anon_sym___alignof__] = ACTIONS(1287), - [anon_sym___alignof] = ACTIONS(1287), - [anon_sym__alignof] = ACTIONS(1287), - [anon_sym_alignof] = ACTIONS(1287), - [anon_sym__Alignof] = ACTIONS(1287), - [anon_sym_offsetof] = ACTIONS(1287), - [anon_sym__Generic] = ACTIONS(1287), - [anon_sym_asm] = ACTIONS(1287), - [anon_sym___asm__] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(1289), - [anon_sym_L_SQUOTE] = ACTIONS(1289), - [anon_sym_u_SQUOTE] = ACTIONS(1289), - [anon_sym_U_SQUOTE] = ACTIONS(1289), - [anon_sym_u8_SQUOTE] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [anon_sym_L_DQUOTE] = ACTIONS(1289), - [anon_sym_u_DQUOTE] = ACTIONS(1289), - [anon_sym_U_DQUOTE] = ACTIONS(1289), - [anon_sym_u8_DQUOTE] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1289), - [sym_true] = ACTIONS(1287), - [sym_false] = ACTIONS(1287), - [anon_sym_NULL] = ACTIONS(1287), - [anon_sym_nullptr] = ACTIONS(1287), + [287] = { + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym__Nonnull] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym___try] = ACTIONS(1331), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, - [287] = { + [288] = { + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym___try] = ACTIONS(1267), + [anon_sym___leave] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + }, + [289] = { [sym_identifier] = ACTIONS(1299), [aux_sym_preproc_include_token1] = ACTIONS(1299), [aux_sym_preproc_def_token1] = ACTIONS(1299), @@ -45176,6 +45686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1299), [anon_sym__Noreturn] = ACTIONS(1299), [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym__Nonnull] = ACTIONS(1299), [anon_sym_alignas] = ACTIONS(1299), [anon_sym__Alignas] = ACTIONS(1299), [sym_primitive_type] = ACTIONS(1299), @@ -45224,301 +45735,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, - [288] = { - [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_LBRACK_LBRACK] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1303), - [anon_sym___cdecl] = ACTIONS(1303), - [anon_sym___clrcall] = ACTIONS(1303), - [anon_sym___stdcall] = ACTIONS(1303), - [anon_sym___fastcall] = ACTIONS(1303), - [anon_sym___thiscall] = ACTIONS(1303), - [anon_sym___vectorcall] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1303), - [anon_sym_unsigned] = ACTIONS(1303), - [anon_sym_long] = ACTIONS(1303), - [anon_sym_short] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_auto] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_inline] = ACTIONS(1303), - [anon_sym___inline] = ACTIONS(1303), - [anon_sym___inline__] = ACTIONS(1303), - [anon_sym___forceinline] = ACTIONS(1303), - [anon_sym_thread_local] = ACTIONS(1303), - [anon_sym___thread] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_constexpr] = ACTIONS(1303), - [anon_sym_volatile] = ACTIONS(1303), - [anon_sym_restrict] = ACTIONS(1303), - [anon_sym___restrict__] = ACTIONS(1303), - [anon_sym__Atomic] = ACTIONS(1303), - [anon_sym__Noreturn] = ACTIONS(1303), - [anon_sym_noreturn] = ACTIONS(1303), - [anon_sym_alignas] = ACTIONS(1303), - [anon_sym__Alignas] = ACTIONS(1303), - [sym_primitive_type] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_goto] = ACTIONS(1303), - [anon_sym___try] = ACTIONS(1303), - [anon_sym___leave] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_sizeof] = ACTIONS(1303), - [anon_sym___alignof__] = ACTIONS(1303), - [anon_sym___alignof] = ACTIONS(1303), - [anon_sym__alignof] = ACTIONS(1303), - [anon_sym_alignof] = ACTIONS(1303), - [anon_sym__Alignof] = ACTIONS(1303), - [anon_sym_offsetof] = ACTIONS(1303), - [anon_sym__Generic] = ACTIONS(1303), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym___asm__] = ACTIONS(1303), - [sym_number_literal] = ACTIONS(1305), - [anon_sym_L_SQUOTE] = ACTIONS(1305), - [anon_sym_u_SQUOTE] = ACTIONS(1305), - [anon_sym_U_SQUOTE] = ACTIONS(1305), - [anon_sym_u8_SQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_L_DQUOTE] = ACTIONS(1305), - [anon_sym_u_DQUOTE] = ACTIONS(1305), - [anon_sym_U_DQUOTE] = ACTIONS(1305), - [anon_sym_u8_DQUOTE] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [anon_sym_NULL] = ACTIONS(1303), - [anon_sym_nullptr] = ACTIONS(1303), - [sym_comment] = ACTIONS(3), - }, - [289] = { - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token2] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym___try] = ACTIONS(1307), - [anon_sym___leave] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), - [sym_comment] = ACTIONS(3), - }, [290] = { - [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_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), - [anon_sym_alignas] = ACTIONS(1361), - [anon_sym__Alignas] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), - [anon_sym___try] = ACTIONS(1361), - [anon_sym___leave] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), - [anon_sym___alignof__] = ACTIONS(1361), - [anon_sym___alignof] = ACTIONS(1361), - [anon_sym__alignof] = ACTIONS(1361), - [anon_sym_alignof] = ACTIONS(1361), - [anon_sym__Alignof] = ACTIONS(1361), - [anon_sym_offsetof] = ACTIONS(1361), - [anon_sym__Generic] = ACTIONS(1361), - [anon_sym_asm] = ACTIONS(1361), - [anon_sym___asm__] = ACTIONS(1361), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_L_SQUOTE] = ACTIONS(1363), - [anon_sym_u_SQUOTE] = ACTIONS(1363), - [anon_sym_U_SQUOTE] = ACTIONS(1363), - [anon_sym_u8_SQUOTE] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_L_DQUOTE] = ACTIONS(1363), - [anon_sym_u_DQUOTE] = ACTIONS(1363), - [anon_sym_U_DQUOTE] = ACTIONS(1363), - [anon_sym_u8_DQUOTE] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [anon_sym_NULL] = ACTIONS(1361), - [anon_sym_nullptr] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token2] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym__Nonnull] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym___try] = ACTIONS(1319), + [anon_sym___leave] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, [291] = { @@ -45572,6 +45886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1323), [anon_sym__Noreturn] = ACTIONS(1323), [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym__Nonnull] = ACTIONS(1323), [anon_sym_alignas] = ACTIONS(1323), [anon_sym__Alignas] = ACTIONS(1323), [sym_primitive_type] = ACTIONS(1323), @@ -45620,205 +45935,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, - [292] = { - [sym_identifier] = ACTIONS(1287), - [aux_sym_preproc_include_token1] = ACTIONS(1287), - [aux_sym_preproc_def_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), - [sym_preproc_directive] = ACTIONS(1287), - [anon_sym_LPAREN2] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym___extension__] = ACTIONS(1287), - [anon_sym_typedef] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1287), - [anon_sym___attribute__] = ACTIONS(1287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), - [anon_sym___declspec] = ACTIONS(1287), - [anon_sym___cdecl] = ACTIONS(1287), - [anon_sym___clrcall] = ACTIONS(1287), - [anon_sym___stdcall] = ACTIONS(1287), - [anon_sym___fastcall] = ACTIONS(1287), - [anon_sym___thiscall] = ACTIONS(1287), - [anon_sym___vectorcall] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_RBRACE] = ACTIONS(1289), - [anon_sym_signed] = ACTIONS(1287), - [anon_sym_unsigned] = ACTIONS(1287), - [anon_sym_long] = ACTIONS(1287), - [anon_sym_short] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_auto] = ACTIONS(1287), - [anon_sym_register] = ACTIONS(1287), - [anon_sym_inline] = ACTIONS(1287), - [anon_sym___inline] = ACTIONS(1287), - [anon_sym___inline__] = ACTIONS(1287), - [anon_sym___forceinline] = ACTIONS(1287), - [anon_sym_thread_local] = ACTIONS(1287), - [anon_sym___thread] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_constexpr] = ACTIONS(1287), - [anon_sym_volatile] = ACTIONS(1287), - [anon_sym_restrict] = ACTIONS(1287), - [anon_sym___restrict__] = ACTIONS(1287), - [anon_sym__Atomic] = ACTIONS(1287), - [anon_sym__Noreturn] = ACTIONS(1287), - [anon_sym_noreturn] = ACTIONS(1287), - [anon_sym_alignas] = ACTIONS(1287), - [anon_sym__Alignas] = ACTIONS(1287), - [sym_primitive_type] = ACTIONS(1287), - [anon_sym_enum] = ACTIONS(1287), - [anon_sym_struct] = ACTIONS(1287), - [anon_sym_union] = ACTIONS(1287), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_switch] = ACTIONS(1287), - [anon_sym_case] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1287), - [anon_sym_while] = ACTIONS(1287), - [anon_sym_do] = ACTIONS(1287), - [anon_sym_for] = ACTIONS(1287), - [anon_sym_return] = ACTIONS(1287), - [anon_sym_break] = ACTIONS(1287), - [anon_sym_continue] = ACTIONS(1287), - [anon_sym_goto] = ACTIONS(1287), - [anon_sym___try] = ACTIONS(1287), - [anon_sym___leave] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1287), - [anon_sym___alignof__] = ACTIONS(1287), - [anon_sym___alignof] = ACTIONS(1287), - [anon_sym__alignof] = ACTIONS(1287), - [anon_sym_alignof] = ACTIONS(1287), - [anon_sym__Alignof] = ACTIONS(1287), - [anon_sym_offsetof] = ACTIONS(1287), - [anon_sym__Generic] = ACTIONS(1287), - [anon_sym_asm] = ACTIONS(1287), - [anon_sym___asm__] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(1289), - [anon_sym_L_SQUOTE] = ACTIONS(1289), - [anon_sym_u_SQUOTE] = ACTIONS(1289), - [anon_sym_U_SQUOTE] = ACTIONS(1289), - [anon_sym_u8_SQUOTE] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [anon_sym_L_DQUOTE] = ACTIONS(1289), - [anon_sym_u_DQUOTE] = ACTIONS(1289), - [anon_sym_U_DQUOTE] = ACTIONS(1289), - [anon_sym_u8_DQUOTE] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1289), - [sym_true] = ACTIONS(1287), - [sym_false] = ACTIONS(1287), - [anon_sym_NULL] = ACTIONS(1287), - [anon_sym_nullptr] = ACTIONS(1287), + [292] = { + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token2] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym__Nonnull] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym___try] = ACTIONS(1327), + [anon_sym___leave] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), + [sym_comment] = ACTIONS(3), + }, + [293] = { + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym__Nonnull] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym___try] = ACTIONS(1343), + [anon_sym___leave] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, - [293] = { - [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_include_token1] = ACTIONS(1259), - [aux_sym_preproc_def_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), - [sym_preproc_directive] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym___extension__] = ACTIONS(1259), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym___attribute__] = ACTIONS(1259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), - [anon_sym___declspec] = ACTIONS(1259), - [anon_sym___cdecl] = ACTIONS(1259), - [anon_sym___clrcall] = ACTIONS(1259), - [anon_sym___stdcall] = ACTIONS(1259), - [anon_sym___fastcall] = ACTIONS(1259), - [anon_sym___thiscall] = ACTIONS(1259), - [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_signed] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1259), - [anon_sym___inline] = ACTIONS(1259), - [anon_sym___inline__] = ACTIONS(1259), - [anon_sym___forceinline] = ACTIONS(1259), - [anon_sym_thread_local] = ACTIONS(1259), - [anon_sym___thread] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_constexpr] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym___restrict__] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym__Noreturn] = ACTIONS(1259), - [anon_sym_noreturn] = ACTIONS(1259), - [anon_sym_alignas] = ACTIONS(1259), - [anon_sym__Alignas] = ACTIONS(1259), - [sym_primitive_type] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_switch] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_goto] = ACTIONS(1259), - [anon_sym___try] = ACTIONS(1259), - [anon_sym___leave] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_sizeof] = ACTIONS(1259), - [anon_sym___alignof__] = ACTIONS(1259), - [anon_sym___alignof] = ACTIONS(1259), - [anon_sym__alignof] = ACTIONS(1259), - [anon_sym_alignof] = ACTIONS(1259), - [anon_sym__Alignof] = ACTIONS(1259), - [anon_sym_offsetof] = ACTIONS(1259), - [anon_sym__Generic] = ACTIONS(1259), - [anon_sym_asm] = ACTIONS(1259), - [anon_sym___asm__] = ACTIONS(1259), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_L_SQUOTE] = ACTIONS(1261), - [anon_sym_u_SQUOTE] = ACTIONS(1261), - [anon_sym_U_SQUOTE] = ACTIONS(1261), - [anon_sym_u8_SQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_L_DQUOTE] = ACTIONS(1261), - [anon_sym_u_DQUOTE] = ACTIONS(1261), - [anon_sym_U_DQUOTE] = ACTIONS(1261), - [anon_sym_u8_DQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_true] = ACTIONS(1259), - [sym_false] = ACTIONS(1259), - [anon_sym_NULL] = ACTIONS(1259), - [anon_sym_nullptr] = ACTIONS(1259), + [294] = { + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token2] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym__Nonnull] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), + [sym_comment] = ACTIONS(3), + }, + [295] = { + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym__Nonnull] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym___try] = ACTIONS(1347), + [anon_sym___leave] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, - [294] = { + [296] = { [sym_identifier] = ACTIONS(1263), [aux_sym_preproc_include_token1] = ACTIONS(1263), [aux_sym_preproc_def_token1] = ACTIONS(1263), @@ -45869,6 +46386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1263), [anon_sym__Noreturn] = ACTIONS(1263), [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym__Nonnull] = ACTIONS(1263), [anon_sym_alignas] = ACTIONS(1263), [anon_sym__Alignas] = ACTIONS(1263), [sym_primitive_type] = ACTIONS(1263), @@ -45917,499 +46435,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1263), [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(1347), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), - [sym_preproc_directive] = ACTIONS(1347), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1347), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym___attribute__] = ACTIONS(1347), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1347), - [anon_sym___cdecl] = ACTIONS(1347), - [anon_sym___clrcall] = ACTIONS(1347), - [anon_sym___stdcall] = ACTIONS(1347), - [anon_sym___fastcall] = ACTIONS(1347), - [anon_sym___thiscall] = ACTIONS(1347), - [anon_sym___vectorcall] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1347), - [anon_sym_unsigned] = ACTIONS(1347), - [anon_sym_long] = ACTIONS(1347), - [anon_sym_short] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_auto] = ACTIONS(1347), - [anon_sym_register] = ACTIONS(1347), - [anon_sym_inline] = ACTIONS(1347), - [anon_sym___inline] = ACTIONS(1347), - [anon_sym___inline__] = ACTIONS(1347), - [anon_sym___forceinline] = ACTIONS(1347), - [anon_sym_thread_local] = ACTIONS(1347), - [anon_sym___thread] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_constexpr] = ACTIONS(1347), - [anon_sym_volatile] = ACTIONS(1347), - [anon_sym_restrict] = ACTIONS(1347), - [anon_sym___restrict__] = ACTIONS(1347), - [anon_sym__Atomic] = ACTIONS(1347), - [anon_sym__Noreturn] = ACTIONS(1347), - [anon_sym_noreturn] = ACTIONS(1347), - [anon_sym_alignas] = ACTIONS(1347), - [anon_sym__Alignas] = ACTIONS(1347), - [sym_primitive_type] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_switch] = ACTIONS(1347), - [anon_sym_case] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_do] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_goto] = ACTIONS(1347), - [anon_sym___try] = ACTIONS(1347), - [anon_sym___leave] = ACTIONS(1347), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1347), - [anon_sym___alignof__] = ACTIONS(1347), - [anon_sym___alignof] = ACTIONS(1347), - [anon_sym__alignof] = ACTIONS(1347), - [anon_sym_alignof] = ACTIONS(1347), - [anon_sym__Alignof] = ACTIONS(1347), - [anon_sym_offsetof] = ACTIONS(1347), - [anon_sym__Generic] = ACTIONS(1347), - [anon_sym_asm] = ACTIONS(1347), - [anon_sym___asm__] = ACTIONS(1347), - [sym_number_literal] = ACTIONS(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(1347), - [sym_false] = ACTIONS(1347), - [anon_sym_NULL] = ACTIONS(1347), - [anon_sym_nullptr] = ACTIONS(1347), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token2] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym___try] = ACTIONS(1335), - [anon_sym___leave] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), - [sym_comment] = ACTIONS(3), - }, [297] = { - [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_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), - [anon_sym_alignas] = ACTIONS(1361), - [anon_sym__Alignas] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), - [anon_sym___try] = ACTIONS(1361), - [anon_sym___leave] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), - [anon_sym___alignof__] = ACTIONS(1361), - [anon_sym___alignof] = ACTIONS(1361), - [anon_sym__alignof] = ACTIONS(1361), - [anon_sym_alignof] = ACTIONS(1361), - [anon_sym__Alignof] = ACTIONS(1361), - [anon_sym_offsetof] = ACTIONS(1361), - [anon_sym__Generic] = ACTIONS(1361), - [anon_sym_asm] = ACTIONS(1361), - [anon_sym___asm__] = ACTIONS(1361), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_L_SQUOTE] = ACTIONS(1363), - [anon_sym_u_SQUOTE] = ACTIONS(1363), - [anon_sym_U_SQUOTE] = ACTIONS(1363), - [anon_sym_u8_SQUOTE] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_L_DQUOTE] = ACTIONS(1363), - [anon_sym_u_DQUOTE] = ACTIONS(1363), - [anon_sym_U_DQUOTE] = ACTIONS(1363), - [anon_sym_u8_DQUOTE] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [anon_sym_NULL] = ACTIONS(1361), - [anon_sym_nullptr] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym__Nonnull] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym___try] = ACTIONS(1307), + [anon_sym___leave] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [298] = { - [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_include_token1] = ACTIONS(1259), - [aux_sym_preproc_def_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token2] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), - [sym_preproc_directive] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym___extension__] = ACTIONS(1259), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym___attribute__] = ACTIONS(1259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), - [anon_sym___declspec] = ACTIONS(1259), - [anon_sym___cdecl] = ACTIONS(1259), - [anon_sym___clrcall] = ACTIONS(1259), - [anon_sym___stdcall] = ACTIONS(1259), - [anon_sym___fastcall] = ACTIONS(1259), - [anon_sym___thiscall] = ACTIONS(1259), - [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_signed] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1259), - [anon_sym___inline] = ACTIONS(1259), - [anon_sym___inline__] = ACTIONS(1259), - [anon_sym___forceinline] = ACTIONS(1259), - [anon_sym_thread_local] = ACTIONS(1259), - [anon_sym___thread] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_constexpr] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym___restrict__] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym__Noreturn] = ACTIONS(1259), - [anon_sym_noreturn] = ACTIONS(1259), - [anon_sym_alignas] = ACTIONS(1259), - [anon_sym__Alignas] = ACTIONS(1259), - [sym_primitive_type] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_switch] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_goto] = ACTIONS(1259), - [anon_sym___try] = ACTIONS(1259), - [anon_sym___leave] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_sizeof] = ACTIONS(1259), - [anon_sym___alignof__] = ACTIONS(1259), - [anon_sym___alignof] = ACTIONS(1259), - [anon_sym__alignof] = ACTIONS(1259), - [anon_sym_alignof] = ACTIONS(1259), - [anon_sym__Alignof] = ACTIONS(1259), - [anon_sym_offsetof] = ACTIONS(1259), - [anon_sym__Generic] = ACTIONS(1259), - [anon_sym_asm] = ACTIONS(1259), - [anon_sym___asm__] = ACTIONS(1259), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_L_SQUOTE] = ACTIONS(1261), - [anon_sym_u_SQUOTE] = ACTIONS(1261), - [anon_sym_U_SQUOTE] = ACTIONS(1261), - [anon_sym_u8_SQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_L_DQUOTE] = ACTIONS(1261), - [anon_sym_u_DQUOTE] = ACTIONS(1261), - [anon_sym_U_DQUOTE] = ACTIONS(1261), - [anon_sym_u8_DQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_true] = ACTIONS(1259), - [sym_false] = ACTIONS(1259), - [anon_sym_NULL] = ACTIONS(1259), - [anon_sym_nullptr] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym__Nonnull] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym___try] = ACTIONS(1299), + [anon_sym___leave] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, [299] = { - [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_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), - [anon_sym_alignas] = ACTIONS(1357), - [anon_sym__Alignas] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym___try] = ACTIONS(1357), - [anon_sym___leave] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_sizeof] = ACTIONS(1357), - [anon_sym___alignof__] = ACTIONS(1357), - [anon_sym___alignof] = ACTIONS(1357), - [anon_sym__alignof] = ACTIONS(1357), - [anon_sym_alignof] = ACTIONS(1357), - [anon_sym__Alignof] = ACTIONS(1357), - [anon_sym_offsetof] = ACTIONS(1357), - [anon_sym__Generic] = ACTIONS(1357), - [anon_sym_asm] = ACTIONS(1357), - [anon_sym___asm__] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [anon_sym_NULL] = ACTIONS(1357), - [anon_sym_nullptr] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token2] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym__Nonnull] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym___try] = ACTIONS(1339), + [anon_sym___leave] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), [sym_comment] = ACTIONS(3), }, [300] = { @@ -46463,6 +46786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1263), [anon_sym__Noreturn] = ACTIONS(1263), [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym__Nonnull] = ACTIONS(1263), [anon_sym_alignas] = ACTIONS(1263), [anon_sym__Alignas] = ACTIONS(1263), [sym_primitive_type] = ACTIONS(1263), @@ -46512,6 +46836,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [301] = { + [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_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), + [anon_sym__Nonnull] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym___try] = ACTIONS(1365), + [anon_sym___leave] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + }, + [302] = { [sym_identifier] = ACTIONS(1271), [aux_sym_preproc_include_token1] = ACTIONS(1271), [aux_sym_preproc_def_token1] = ACTIONS(1271), @@ -46562,6 +46986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1271), [anon_sym__Noreturn] = ACTIONS(1271), [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym__Nonnull] = ACTIONS(1271), [anon_sym_alignas] = ACTIONS(1271), [anon_sym__Alignas] = ACTIONS(1271), [sym_primitive_type] = ACTIONS(1271), @@ -46610,7 +47035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1271), [sym_comment] = ACTIONS(3), }, - [302] = { + [303] = { [sym_identifier] = ACTIONS(1275), [aux_sym_preproc_include_token1] = ACTIONS(1275), [aux_sym_preproc_def_token1] = ACTIONS(1275), @@ -46660,548 +47085,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(1275), [anon_sym__Atomic] = ACTIONS(1275), [anon_sym__Noreturn] = ACTIONS(1275), - [anon_sym_noreturn] = ACTIONS(1275), - [anon_sym_alignas] = ACTIONS(1275), - [anon_sym__Alignas] = ACTIONS(1275), - [sym_primitive_type] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_switch] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_goto] = ACTIONS(1275), - [anon_sym___try] = ACTIONS(1275), - [anon_sym___leave] = ACTIONS(1275), - [anon_sym_DASH_DASH] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym___alignof__] = ACTIONS(1275), - [anon_sym___alignof] = ACTIONS(1275), - [anon_sym__alignof] = ACTIONS(1275), - [anon_sym_alignof] = ACTIONS(1275), - [anon_sym__Alignof] = ACTIONS(1275), - [anon_sym_offsetof] = ACTIONS(1275), - [anon_sym__Generic] = ACTIONS(1275), - [anon_sym_asm] = ACTIONS(1275), - [anon_sym___asm__] = ACTIONS(1275), - [sym_number_literal] = ACTIONS(1277), - [anon_sym_L_SQUOTE] = ACTIONS(1277), - [anon_sym_u_SQUOTE] = ACTIONS(1277), - [anon_sym_U_SQUOTE] = ACTIONS(1277), - [anon_sym_u8_SQUOTE] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1277), - [anon_sym_L_DQUOTE] = ACTIONS(1277), - [anon_sym_u_DQUOTE] = ACTIONS(1277), - [anon_sym_U_DQUOTE] = ACTIONS(1277), - [anon_sym_u8_DQUOTE] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym_true] = ACTIONS(1275), - [sym_false] = ACTIONS(1275), - [anon_sym_NULL] = ACTIONS(1275), - [anon_sym_nullptr] = ACTIONS(1275), - [sym_comment] = ACTIONS(3), - }, - [303] = { - [sym_identifier] = ACTIONS(1279), - [aux_sym_preproc_include_token1] = ACTIONS(1279), - [aux_sym_preproc_def_token1] = ACTIONS(1279), - [aux_sym_preproc_if_token1] = ACTIONS(1279), - [aux_sym_preproc_if_token2] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), - [sym_preproc_directive] = ACTIONS(1279), - [anon_sym_LPAREN2] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym___extension__] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym___attribute__] = ACTIONS(1279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), - [anon_sym___declspec] = ACTIONS(1279), - [anon_sym___cdecl] = ACTIONS(1279), - [anon_sym___clrcall] = ACTIONS(1279), - [anon_sym___stdcall] = ACTIONS(1279), - [anon_sym___fastcall] = ACTIONS(1279), - [anon_sym___thiscall] = ACTIONS(1279), - [anon_sym___vectorcall] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_signed] = ACTIONS(1279), - [anon_sym_unsigned] = ACTIONS(1279), - [anon_sym_long] = ACTIONS(1279), - [anon_sym_short] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_auto] = ACTIONS(1279), - [anon_sym_register] = ACTIONS(1279), - [anon_sym_inline] = ACTIONS(1279), - [anon_sym___inline] = ACTIONS(1279), - [anon_sym___inline__] = ACTIONS(1279), - [anon_sym___forceinline] = ACTIONS(1279), - [anon_sym_thread_local] = ACTIONS(1279), - [anon_sym___thread] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_constexpr] = ACTIONS(1279), - [anon_sym_volatile] = ACTIONS(1279), - [anon_sym_restrict] = ACTIONS(1279), - [anon_sym___restrict__] = ACTIONS(1279), - [anon_sym__Atomic] = ACTIONS(1279), - [anon_sym__Noreturn] = ACTIONS(1279), - [anon_sym_noreturn] = ACTIONS(1279), - [anon_sym_alignas] = ACTIONS(1279), - [anon_sym__Alignas] = ACTIONS(1279), - [sym_primitive_type] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1279), - [anon_sym_switch] = ACTIONS(1279), - [anon_sym_case] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_while] = ACTIONS(1279), - [anon_sym_do] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1279), - [anon_sym_continue] = ACTIONS(1279), - [anon_sym_goto] = ACTIONS(1279), - [anon_sym___try] = ACTIONS(1279), - [anon_sym___leave] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym___alignof__] = ACTIONS(1279), - [anon_sym___alignof] = ACTIONS(1279), - [anon_sym__alignof] = ACTIONS(1279), - [anon_sym_alignof] = ACTIONS(1279), - [anon_sym__Alignof] = ACTIONS(1279), - [anon_sym_offsetof] = ACTIONS(1279), - [anon_sym__Generic] = ACTIONS(1279), - [anon_sym_asm] = ACTIONS(1279), - [anon_sym___asm__] = ACTIONS(1279), - [sym_number_literal] = ACTIONS(1281), - [anon_sym_L_SQUOTE] = ACTIONS(1281), - [anon_sym_u_SQUOTE] = ACTIONS(1281), - [anon_sym_U_SQUOTE] = ACTIONS(1281), - [anon_sym_u8_SQUOTE] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1281), - [anon_sym_L_DQUOTE] = ACTIONS(1281), - [anon_sym_u_DQUOTE] = ACTIONS(1281), - [anon_sym_U_DQUOTE] = ACTIONS(1281), - [anon_sym_u8_DQUOTE] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [sym_true] = ACTIONS(1279), - [sym_false] = ACTIONS(1279), - [anon_sym_NULL] = ACTIONS(1279), - [anon_sym_nullptr] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym__Nonnull] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym___try] = ACTIONS(1275), + [anon_sym___leave] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), [sym_comment] = ACTIONS(3), }, [304] = { - [sym_identifier] = ACTIONS(1343), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_LPAREN2] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym___extension__] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym___attribute__] = ACTIONS(1343), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1343), - [anon_sym___cdecl] = ACTIONS(1343), - [anon_sym___clrcall] = ACTIONS(1343), - [anon_sym___stdcall] = ACTIONS(1343), - [anon_sym___fastcall] = ACTIONS(1343), - [anon_sym___thiscall] = ACTIONS(1343), - [anon_sym___vectorcall] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym___inline] = ACTIONS(1343), - [anon_sym___inline__] = ACTIONS(1343), - [anon_sym___forceinline] = ACTIONS(1343), - [anon_sym_thread_local] = ACTIONS(1343), - [anon_sym___thread] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_constexpr] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym___restrict__] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym__Noreturn] = ACTIONS(1343), - [anon_sym_noreturn] = ACTIONS(1343), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_case] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym___try] = ACTIONS(1343), - [anon_sym___leave] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_sizeof] = ACTIONS(1343), - [anon_sym___alignof__] = ACTIONS(1343), - [anon_sym___alignof] = ACTIONS(1343), - [anon_sym__alignof] = ACTIONS(1343), - [anon_sym_alignof] = ACTIONS(1343), - [anon_sym__Alignof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1343), - [anon_sym__Generic] = ACTIONS(1343), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym___asm__] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_L_SQUOTE] = ACTIONS(1345), - [anon_sym_u_SQUOTE] = ACTIONS(1345), - [anon_sym_U_SQUOTE] = ACTIONS(1345), - [anon_sym_u8_SQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_L_DQUOTE] = ACTIONS(1345), - [anon_sym_u_DQUOTE] = ACTIONS(1345), - [anon_sym_U_DQUOTE] = ACTIONS(1345), - [anon_sym_u8_DQUOTE] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [anon_sym_NULL] = ACTIONS(1343), - [anon_sym_nullptr] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token2] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1351), + [sym_preproc_directive] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym___attribute__] = ACTIONS(1351), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1351), + [anon_sym___cdecl] = ACTIONS(1351), + [anon_sym___clrcall] = ACTIONS(1351), + [anon_sym___stdcall] = ACTIONS(1351), + [anon_sym___fastcall] = ACTIONS(1351), + [anon_sym___thiscall] = ACTIONS(1351), + [anon_sym___vectorcall] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1351), + [anon_sym_unsigned] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_auto] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_inline] = ACTIONS(1351), + [anon_sym___inline] = ACTIONS(1351), + [anon_sym___inline__] = ACTIONS(1351), + [anon_sym___forceinline] = ACTIONS(1351), + [anon_sym_thread_local] = ACTIONS(1351), + [anon_sym___thread] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_constexpr] = ACTIONS(1351), + [anon_sym_volatile] = ACTIONS(1351), + [anon_sym_restrict] = ACTIONS(1351), + [anon_sym___restrict__] = ACTIONS(1351), + [anon_sym__Atomic] = ACTIONS(1351), + [anon_sym__Noreturn] = ACTIONS(1351), + [anon_sym_noreturn] = ACTIONS(1351), + [anon_sym__Nonnull] = ACTIONS(1351), + [anon_sym_alignas] = ACTIONS(1351), + [anon_sym__Alignas] = ACTIONS(1351), + [sym_primitive_type] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_goto] = ACTIONS(1351), + [anon_sym___try] = ACTIONS(1351), + [anon_sym___leave] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1351), + [anon_sym___alignof__] = ACTIONS(1351), + [anon_sym___alignof] = ACTIONS(1351), + [anon_sym__alignof] = ACTIONS(1351), + [anon_sym_alignof] = ACTIONS(1351), + [anon_sym__Alignof] = ACTIONS(1351), + [anon_sym_offsetof] = ACTIONS(1351), + [anon_sym__Generic] = ACTIONS(1351), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym___asm__] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(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(1351), + [sym_false] = ACTIONS(1351), + [anon_sym_NULL] = ACTIONS(1351), + [anon_sym_nullptr] = ACTIONS(1351), [sym_comment] = ACTIONS(3), }, [305] = { - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), - [anon_sym___vectorcall] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___inline] = ACTIONS(1339), - [anon_sym___inline__] = ACTIONS(1339), - [anon_sym___forceinline] = ACTIONS(1339), - [anon_sym_thread_local] = ACTIONS(1339), - [anon_sym___thread] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_constexpr] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym___restrict__] = ACTIONS(1339), - [anon_sym__Atomic] = ACTIONS(1339), - [anon_sym__Noreturn] = ACTIONS(1339), - [anon_sym_noreturn] = ACTIONS(1339), - [anon_sym_alignas] = ACTIONS(1339), - [anon_sym__Alignas] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [anon_sym___try] = ACTIONS(1339), - [anon_sym___leave] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym___alignof__] = ACTIONS(1339), - [anon_sym___alignof] = ACTIONS(1339), - [anon_sym__alignof] = ACTIONS(1339), - [anon_sym_alignof] = ACTIONS(1339), - [anon_sym__Alignof] = ACTIONS(1339), - [anon_sym_offsetof] = ACTIONS(1339), - [anon_sym__Generic] = ACTIONS(1339), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym___asm__] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_L_SQUOTE] = ACTIONS(1341), - [anon_sym_u_SQUOTE] = ACTIONS(1341), - [anon_sym_U_SQUOTE] = ACTIONS(1341), - [anon_sym_u8_SQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_L_DQUOTE] = ACTIONS(1341), - [anon_sym_u_DQUOTE] = ACTIONS(1341), - [anon_sym_U_DQUOTE] = ACTIONS(1341), - [anon_sym_u8_DQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_NULL] = ACTIONS(1339), - [anon_sym_nullptr] = ACTIONS(1339), + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym__Nonnull] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, [306] = { - [sym_identifier] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1311), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1311), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_TILDE] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym___extension__] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym___attribute__] = ACTIONS(1311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1311), - [anon_sym___cdecl] = ACTIONS(1311), - [anon_sym___clrcall] = ACTIONS(1311), - [anon_sym___stdcall] = ACTIONS(1311), - [anon_sym___fastcall] = ACTIONS(1311), - [anon_sym___thiscall] = ACTIONS(1311), - [anon_sym___vectorcall] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1311), - [anon_sym_unsigned] = ACTIONS(1311), - [anon_sym_long] = ACTIONS(1311), - [anon_sym_short] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_auto] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_inline] = ACTIONS(1311), - [anon_sym___inline] = ACTIONS(1311), - [anon_sym___inline__] = ACTIONS(1311), - [anon_sym___forceinline] = ACTIONS(1311), - [anon_sym_thread_local] = ACTIONS(1311), - [anon_sym___thread] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_constexpr] = ACTIONS(1311), - [anon_sym_volatile] = ACTIONS(1311), - [anon_sym_restrict] = ACTIONS(1311), - [anon_sym___restrict__] = ACTIONS(1311), - [anon_sym__Atomic] = ACTIONS(1311), - [anon_sym__Noreturn] = ACTIONS(1311), - [anon_sym_noreturn] = ACTIONS(1311), - [anon_sym_alignas] = ACTIONS(1311), - [anon_sym__Alignas] = ACTIONS(1311), - [sym_primitive_type] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_switch] = ACTIONS(1311), - [anon_sym_case] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym___try] = ACTIONS(1311), - [anon_sym___leave] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym___alignof__] = ACTIONS(1311), - [anon_sym___alignof] = ACTIONS(1311), - [anon_sym__alignof] = ACTIONS(1311), - [anon_sym_alignof] = ACTIONS(1311), - [anon_sym__Alignof] = ACTIONS(1311), - [anon_sym_offsetof] = ACTIONS(1311), - [anon_sym__Generic] = ACTIONS(1311), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym___asm__] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_L_SQUOTE] = ACTIONS(1313), - [anon_sym_u_SQUOTE] = ACTIONS(1313), - [anon_sym_U_SQUOTE] = ACTIONS(1313), - [anon_sym_u8_SQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_L_DQUOTE] = ACTIONS(1313), - [anon_sym_u_DQUOTE] = ACTIONS(1313), - [anon_sym_U_DQUOTE] = ACTIONS(1313), - [anon_sym_u8_DQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [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_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), + [anon_sym__Nonnull] = ACTIONS(1357), + [anon_sym_alignas] = ACTIONS(1357), + [anon_sym__Alignas] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym___try] = ACTIONS(1357), + [anon_sym___leave] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym___alignof__] = ACTIONS(1357), + [anon_sym___alignof] = ACTIONS(1357), + [anon_sym__alignof] = ACTIONS(1357), + [anon_sym_alignof] = ACTIONS(1357), + [anon_sym__Alignof] = ACTIONS(1357), + [anon_sym_offsetof] = ACTIONS(1357), + [anon_sym__Generic] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym___asm__] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1359), + [anon_sym_L_SQUOTE] = ACTIONS(1359), + [anon_sym_u_SQUOTE] = ACTIONS(1359), + [anon_sym_U_SQUOTE] = ACTIONS(1359), + [anon_sym_u8_SQUOTE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_L_DQUOTE] = ACTIONS(1359), + [anon_sym_u_DQUOTE] = ACTIONS(1359), + [anon_sym_U_DQUOTE] = ACTIONS(1359), + [anon_sym_u8_DQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_NULL] = ACTIONS(1357), + [anon_sym_nullptr] = ACTIONS(1357), [sym_comment] = ACTIONS(3), }, [307] = { - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), - [anon_sym_unsigned] = ACTIONS(1327), - [anon_sym_long] = ACTIONS(1327), - [anon_sym_short] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_auto] = ACTIONS(1327), - [anon_sym_register] = ACTIONS(1327), - [anon_sym_inline] = ACTIONS(1327), - [anon_sym___inline] = ACTIONS(1327), - [anon_sym___inline__] = ACTIONS(1327), - [anon_sym___forceinline] = ACTIONS(1327), - [anon_sym_thread_local] = ACTIONS(1327), - [anon_sym___thread] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_constexpr] = ACTIONS(1327), - [anon_sym_volatile] = ACTIONS(1327), - [anon_sym_restrict] = ACTIONS(1327), - [anon_sym___restrict__] = ACTIONS(1327), - [anon_sym__Atomic] = ACTIONS(1327), - [anon_sym__Noreturn] = ACTIONS(1327), - [anon_sym_noreturn] = ACTIONS(1327), - [anon_sym_alignas] = ACTIONS(1327), - [anon_sym__Alignas] = ACTIONS(1327), - [sym_primitive_type] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1327), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_goto] = ACTIONS(1327), - [anon_sym___try] = ACTIONS(1327), - [anon_sym___leave] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(1327), - [anon_sym___alignof__] = ACTIONS(1327), - [anon_sym___alignof] = ACTIONS(1327), - [anon_sym__alignof] = ACTIONS(1327), - [anon_sym_alignof] = ACTIONS(1327), - [anon_sym__Alignof] = ACTIONS(1327), - [anon_sym_offsetof] = ACTIONS(1327), - [anon_sym__Generic] = ACTIONS(1327), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym___asm__] = ACTIONS(1327), - [sym_number_literal] = ACTIONS(1329), - [anon_sym_L_SQUOTE] = ACTIONS(1329), - [anon_sym_u_SQUOTE] = ACTIONS(1329), - [anon_sym_U_SQUOTE] = ACTIONS(1329), - [anon_sym_u8_SQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_L_DQUOTE] = ACTIONS(1329), - [anon_sym_u_DQUOTE] = ACTIONS(1329), - [anon_sym_U_DQUOTE] = ACTIONS(1329), - [anon_sym_u8_DQUOTE] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym_true] = ACTIONS(1327), - [sym_false] = ACTIONS(1327), - [anon_sym_NULL] = ACTIONS(1327), - [anon_sym_nullptr] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token2] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym__Nonnull] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym___try] = ACTIONS(1287), + [anon_sym___leave] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, [308] = { @@ -47255,6 +47586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1291), [anon_sym__Noreturn] = ACTIONS(1291), [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym__Nonnull] = ACTIONS(1291), [anon_sym_alignas] = ACTIONS(1291), [anon_sym__Alignas] = ACTIONS(1291), [sym_primitive_type] = ACTIONS(1291), @@ -47304,258 +47636,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [309] = { - [sym_identifier] = ACTIONS(1323), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), - [sym_preproc_directive] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym___attribute__] = ACTIONS(1323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1323), - [anon_sym___cdecl] = ACTIONS(1323), - [anon_sym___clrcall] = ACTIONS(1323), - [anon_sym___stdcall] = ACTIONS(1323), - [anon_sym___fastcall] = ACTIONS(1323), - [anon_sym___thiscall] = ACTIONS(1323), - [anon_sym___vectorcall] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1323), - [anon_sym_unsigned] = ACTIONS(1323), - [anon_sym_long] = ACTIONS(1323), - [anon_sym_short] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_auto] = ACTIONS(1323), - [anon_sym_register] = ACTIONS(1323), - [anon_sym_inline] = ACTIONS(1323), - [anon_sym___inline] = ACTIONS(1323), - [anon_sym___inline__] = ACTIONS(1323), - [anon_sym___forceinline] = ACTIONS(1323), - [anon_sym_thread_local] = ACTIONS(1323), - [anon_sym___thread] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_constexpr] = ACTIONS(1323), - [anon_sym_volatile] = ACTIONS(1323), - [anon_sym_restrict] = ACTIONS(1323), - [anon_sym___restrict__] = ACTIONS(1323), - [anon_sym__Atomic] = ACTIONS(1323), - [anon_sym__Noreturn] = ACTIONS(1323), - [anon_sym_noreturn] = ACTIONS(1323), - [anon_sym_alignas] = ACTIONS(1323), - [anon_sym__Alignas] = ACTIONS(1323), - [sym_primitive_type] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_goto] = ACTIONS(1323), - [anon_sym___try] = ACTIONS(1323), - [anon_sym___leave] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_sizeof] = ACTIONS(1323), - [anon_sym___alignof__] = ACTIONS(1323), - [anon_sym___alignof] = ACTIONS(1323), - [anon_sym__alignof] = ACTIONS(1323), - [anon_sym_alignof] = ACTIONS(1323), - [anon_sym__Alignof] = ACTIONS(1323), - [anon_sym_offsetof] = ACTIONS(1323), - [anon_sym__Generic] = ACTIONS(1323), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym___asm__] = ACTIONS(1323), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_L_SQUOTE] = ACTIONS(1325), - [anon_sym_u_SQUOTE] = ACTIONS(1325), - [anon_sym_U_SQUOTE] = ACTIONS(1325), - [anon_sym_u8_SQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_L_DQUOTE] = ACTIONS(1325), - [anon_sym_u_DQUOTE] = ACTIONS(1325), - [anon_sym_U_DQUOTE] = ACTIONS(1325), - [anon_sym_u8_DQUOTE] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [anon_sym_NULL] = ACTIONS(1323), - [anon_sym_nullptr] = ACTIONS(1323), + [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_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), + [anon_sym__Nonnull] = ACTIONS(1361), + [anon_sym_alignas] = ACTIONS(1361), + [anon_sym__Alignas] = ACTIONS(1361), + [sym_primitive_type] = ACTIONS(1361), + [anon_sym_enum] = ACTIONS(1361), + [anon_sym_struct] = ACTIONS(1361), + [anon_sym_union] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1361), + [anon_sym_case] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1361), + [anon_sym_while] = ACTIONS(1361), + [anon_sym_do] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1361), + [anon_sym_return] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1361), + [anon_sym_continue] = ACTIONS(1361), + [anon_sym_goto] = ACTIONS(1361), + [anon_sym___try] = ACTIONS(1361), + [anon_sym___leave] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym___alignof__] = ACTIONS(1361), + [anon_sym___alignof] = ACTIONS(1361), + [anon_sym__alignof] = ACTIONS(1361), + [anon_sym_alignof] = ACTIONS(1361), + [anon_sym__Alignof] = ACTIONS(1361), + [anon_sym_offsetof] = ACTIONS(1361), + [anon_sym__Generic] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1361), + [anon_sym___asm__] = ACTIONS(1361), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1361), + [sym_false] = ACTIONS(1361), + [anon_sym_NULL] = ACTIONS(1361), + [anon_sym_nullptr] = ACTIONS(1361), [sym_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1343), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1345), - [aux_sym_preproc_if_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), - [sym_preproc_directive] = ACTIONS(1343), - [anon_sym_LPAREN2] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_TILDE] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym___extension__] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym___attribute__] = ACTIONS(1343), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1343), - [anon_sym___cdecl] = ACTIONS(1343), - [anon_sym___clrcall] = ACTIONS(1343), - [anon_sym___stdcall] = ACTIONS(1343), - [anon_sym___fastcall] = ACTIONS(1343), - [anon_sym___thiscall] = ACTIONS(1343), - [anon_sym___vectorcall] = ACTIONS(1343), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1343), - [anon_sym_unsigned] = ACTIONS(1343), - [anon_sym_long] = ACTIONS(1343), - [anon_sym_short] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym___inline] = ACTIONS(1343), - [anon_sym___inline__] = ACTIONS(1343), - [anon_sym___forceinline] = ACTIONS(1343), - [anon_sym_thread_local] = ACTIONS(1343), - [anon_sym___thread] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_constexpr] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym___restrict__] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym__Noreturn] = ACTIONS(1343), - [anon_sym_noreturn] = ACTIONS(1343), - [anon_sym_alignas] = ACTIONS(1343), - [anon_sym__Alignas] = ACTIONS(1343), - [sym_primitive_type] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_switch] = ACTIONS(1343), - [anon_sym_case] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_goto] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1345), - [anon_sym_PLUS_PLUS] = ACTIONS(1345), - [anon_sym_sizeof] = ACTIONS(1343), - [anon_sym___alignof__] = ACTIONS(1343), - [anon_sym___alignof] = ACTIONS(1343), - [anon_sym__alignof] = ACTIONS(1343), - [anon_sym_alignof] = ACTIONS(1343), - [anon_sym__Alignof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1343), - [anon_sym__Generic] = ACTIONS(1343), - [anon_sym_asm] = ACTIONS(1343), - [anon_sym___asm__] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1345), - [anon_sym_L_SQUOTE] = ACTIONS(1345), - [anon_sym_u_SQUOTE] = ACTIONS(1345), - [anon_sym_U_SQUOTE] = ACTIONS(1345), - [anon_sym_u8_SQUOTE] = ACTIONS(1345), - [anon_sym_SQUOTE] = ACTIONS(1345), - [anon_sym_L_DQUOTE] = ACTIONS(1345), - [anon_sym_u_DQUOTE] = ACTIONS(1345), - [anon_sym_U_DQUOTE] = ACTIONS(1345), - [anon_sym_u8_DQUOTE] = ACTIONS(1345), - [anon_sym_DQUOTE] = ACTIONS(1345), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [anon_sym_NULL] = ACTIONS(1343), - [anon_sym_nullptr] = ACTIONS(1343), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_identifier] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [anon_sym_COMMA] = ACTIONS(1309), + [aux_sym_preproc_if_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), + [sym_preproc_directive] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym___extension__] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym___attribute__] = ACTIONS(1307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1307), + [anon_sym___cdecl] = ACTIONS(1307), + [anon_sym___clrcall] = ACTIONS(1307), + [anon_sym___stdcall] = ACTIONS(1307), + [anon_sym___fastcall] = ACTIONS(1307), + [anon_sym___thiscall] = ACTIONS(1307), + [anon_sym___vectorcall] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1307), + [anon_sym_unsigned] = ACTIONS(1307), + [anon_sym_long] = ACTIONS(1307), + [anon_sym_short] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1307), + [anon_sym_auto] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_inline] = ACTIONS(1307), + [anon_sym___inline] = ACTIONS(1307), + [anon_sym___inline__] = ACTIONS(1307), + [anon_sym___forceinline] = ACTIONS(1307), + [anon_sym_thread_local] = ACTIONS(1307), + [anon_sym___thread] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_constexpr] = ACTIONS(1307), + [anon_sym_volatile] = ACTIONS(1307), + [anon_sym_restrict] = ACTIONS(1307), + [anon_sym___restrict__] = ACTIONS(1307), + [anon_sym__Atomic] = ACTIONS(1307), + [anon_sym__Noreturn] = ACTIONS(1307), + [anon_sym_noreturn] = ACTIONS(1307), + [anon_sym__Nonnull] = ACTIONS(1307), + [anon_sym_alignas] = ACTIONS(1307), + [anon_sym__Alignas] = ACTIONS(1307), + [sym_primitive_type] = ACTIONS(1307), + [anon_sym_enum] = ACTIONS(1307), + [anon_sym_struct] = ACTIONS(1307), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_switch] = ACTIONS(1307), + [anon_sym_case] = ACTIONS(1307), + [anon_sym_default] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_goto] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym___alignof__] = ACTIONS(1307), + [anon_sym___alignof] = ACTIONS(1307), + [anon_sym__alignof] = ACTIONS(1307), + [anon_sym_alignof] = ACTIONS(1307), + [anon_sym__Alignof] = ACTIONS(1307), + [anon_sym_offsetof] = ACTIONS(1307), + [anon_sym__Generic] = ACTIONS(1307), + [anon_sym_asm] = ACTIONS(1307), + [anon_sym___asm__] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1309), + [anon_sym_L_SQUOTE] = ACTIONS(1309), + [anon_sym_u_SQUOTE] = ACTIONS(1309), + [anon_sym_U_SQUOTE] = ACTIONS(1309), + [anon_sym_u8_SQUOTE] = ACTIONS(1309), + [anon_sym_SQUOTE] = ACTIONS(1309), + [anon_sym_L_DQUOTE] = ACTIONS(1309), + [anon_sym_u_DQUOTE] = ACTIONS(1309), + [anon_sym_U_DQUOTE] = ACTIONS(1309), + [anon_sym_u8_DQUOTE] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1309), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [anon_sym_NULL] = ACTIONS(1307), + [anon_sym_nullptr] = ACTIONS(1307), [sym_comment] = ACTIONS(3), }, [311] = { + [ts_builtin_sym_end] = ACTIONS(1367), + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1367), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [sym_preproc_directive] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym___extension__] = ACTIONS(1365), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym_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), + [anon_sym__Nonnull] = ACTIONS(1365), + [anon_sym_alignas] = ACTIONS(1365), + [anon_sym__Alignas] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), + [anon_sym_sizeof] = ACTIONS(1365), + [anon_sym___alignof__] = ACTIONS(1365), + [anon_sym___alignof] = ACTIONS(1365), + [anon_sym__alignof] = ACTIONS(1365), + [anon_sym_alignof] = ACTIONS(1365), + [anon_sym__Alignof] = ACTIONS(1365), + [anon_sym_offsetof] = ACTIONS(1365), + [anon_sym__Generic] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1365), + [anon_sym___asm__] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [anon_sym_NULL] = ACTIONS(1365), + [anon_sym_nullptr] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + }, + [312] = { [sym_expression] = STATE(687), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(674), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(674), - [sym_call_expression] = STATE(674), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(674), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(674), - [sym_initializer_list] = STATE(671), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(684), - [sym_null] = STATE(661), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(669), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(669), + [sym_call_expression] = STATE(669), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(669), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(669), + [sym_initializer_list] = STATE(674), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym_identifier] = ACTIONS(1375), [anon_sym_COMMA] = ACTIONS(1377), - [aux_sym_preproc_if_token2] = ACTIONS(1377), - [aux_sym_preproc_else_token1] = ACTIONS(1377), - [aux_sym_preproc_elif_token1] = ACTIONS(1375), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), [anon_sym_LPAREN2] = ACTIONS(1377), [anon_sym_BANG] = ACTIONS(1379), [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1375), - [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), [anon_sym_PIPE_PIPE] = ACTIONS(1377), [anon_sym_AMP_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), [anon_sym_EQ_EQ] = ACTIONS(1377), [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1383), [anon_sym_GT_EQ] = ACTIONS(1377), [anon_sym_LT_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_COLON] = ACTIONS(1377), [anon_sym_QMARK] = ACTIONS(1377), [anon_sym_STAR_EQ] = ACTIONS(1377), [anon_sym_SLASH_EQ] = ACTIONS(1377), @@ -47569,7 +48002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_sizeof] = ACTIONS(1385), + [anon_sym_sizeof] = ACTIONS(1387), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -47579,7 +48012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1383), [anon_sym_DASH_GT] = ACTIONS(1377), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), @@ -47598,62 +48031,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [312] = { + [313] = { [sym_expression] = STATE(687), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(674), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(674), - [sym_call_expression] = STATE(674), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(674), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(674), - [sym_initializer_list] = STATE(671), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_identifier] = ACTIONS(1387), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(669), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(669), + [sym_call_expression] = STATE(669), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(669), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(669), + [sym_initializer_list] = STATE(674), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(700), + [sym_null] = STATE(680), + [sym_identifier] = ACTIONS(1383), [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_RPAREN] = ACTIONS(1377), + [aux_sym_preproc_if_token2] = ACTIONS(1377), + [aux_sym_preproc_else_token1] = ACTIONS(1377), + [aux_sym_preproc_elif_token1] = ACTIONS(1383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), [anon_sym_LPAREN2] = ACTIONS(1377), [anon_sym_BANG] = ACTIONS(1389), [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1375), - [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), [anon_sym_PIPE_PIPE] = ACTIONS(1377), [anon_sym_AMP_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), [anon_sym_EQ_EQ] = ACTIONS(1377), [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1383), [anon_sym_GT_EQ] = ACTIONS(1377), [anon_sym_LT_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_EQ] = ACTIONS(1375), - [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1383), [anon_sym_QMARK] = ACTIONS(1377), [anon_sym_STAR_EQ] = ACTIONS(1377), [anon_sym_SLASH_EQ] = ACTIONS(1377), @@ -47677,7 +48110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1383), [anon_sym_DASH_GT] = ACTIONS(1377), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), @@ -47696,12 +48129,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [313] = { + [314] = { [ts_builtin_sym_end] = ACTIONS(1359), [sym_identifier] = ACTIONS(1357), [aux_sym_preproc_include_token1] = ACTIONS(1357), [aux_sym_preproc_def_token1] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1359), [aux_sym_preproc_if_token1] = ACTIONS(1357), [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), @@ -47726,7 +48158,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -47747,680 +48178,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___restrict__] = ACTIONS(1357), [anon_sym__Atomic] = ACTIONS(1357), [anon_sym__Noreturn] = ACTIONS(1357), - [anon_sym_noreturn] = ACTIONS(1357), - [anon_sym_alignas] = ACTIONS(1357), - [anon_sym__Alignas] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_sizeof] = ACTIONS(1357), - [anon_sym___alignof__] = ACTIONS(1357), - [anon_sym___alignof] = ACTIONS(1357), - [anon_sym__alignof] = ACTIONS(1357), - [anon_sym_alignof] = ACTIONS(1357), - [anon_sym__Alignof] = ACTIONS(1357), - [anon_sym_offsetof] = ACTIONS(1357), - [anon_sym__Generic] = ACTIONS(1357), - [anon_sym_asm] = ACTIONS(1357), - [anon_sym___asm__] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [anon_sym_NULL] = ACTIONS(1357), - [anon_sym_nullptr] = ACTIONS(1357), - [sym_comment] = ACTIONS(3), - }, - [314] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(105), - [sym_statement] = STATE(99), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1397), - [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), - }, - [315] = { - [sym_attribute_declaration] = STATE(318), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_statement] = STATE(157), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym_seh_try_statement] = STATE(247), - [sym_seh_leave_statement] = STATE(247), - [sym_expression] = STATE(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [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(1032), - [anon_sym___leave] = ACTIONS(1034), - [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), - }, - [316] = { - [sym_attribute_declaration] = STATE(318), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_statement] = STATE(236), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym_seh_try_statement] = STATE(247), - [sym_seh_leave_statement] = STATE(247), - [sym_expression] = STATE(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [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(1032), - [anon_sym___leave] = ACTIONS(1034), - [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), - }, - [317] = { - [sym_attribute_declaration] = STATE(317), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_statement] = STATE(195), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym_seh_try_statement] = STATE(247), - [sym_seh_leave_statement] = STATE(247), - [sym_expression] = STATE(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(1401), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1455), - [anon_sym___try] = ACTIONS(1458), - [anon_sym___leave] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1467), - [anon_sym___alignof__] = ACTIONS(1470), - [anon_sym___alignof] = ACTIONS(1470), - [anon_sym__alignof] = ACTIONS(1470), - [anon_sym_alignof] = ACTIONS(1470), - [anon_sym__Alignof] = ACTIONS(1470), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym___asm__] = ACTIONS(1479), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1485), - [anon_sym_u_SQUOTE] = ACTIONS(1485), - [anon_sym_U_SQUOTE] = ACTIONS(1485), - [anon_sym_u8_SQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_L_DQUOTE] = ACTIONS(1488), - [anon_sym_u_DQUOTE] = ACTIONS(1488), - [anon_sym_U_DQUOTE] = ACTIONS(1488), - [anon_sym_u8_DQUOTE] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - }, - [318] = { - [sym_attribute_declaration] = STATE(317), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_statement] = STATE(195), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym_seh_try_statement] = STATE(247), - [sym_seh_leave_statement] = STATE(247), - [sym_expression] = STATE(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [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(1032), - [anon_sym___leave] = ACTIONS(1034), - [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), - }, - [319] = { - [sym_attribute_declaration] = STATE(324), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(144), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), - [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_noreturn] = ACTIONS(1357), + [anon_sym__Nonnull] = ACTIONS(1357), + [anon_sym_alignas] = ACTIONS(1357), + [anon_sym__Alignas] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_sizeof] = ACTIONS(1357), + [anon_sym___alignof__] = ACTIONS(1357), + [anon_sym___alignof] = ACTIONS(1357), + [anon_sym__alignof] = ACTIONS(1357), + [anon_sym_alignof] = ACTIONS(1357), + [anon_sym__Alignof] = ACTIONS(1357), + [anon_sym_offsetof] = ACTIONS(1357), + [anon_sym__Generic] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym___asm__] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1359), + [anon_sym_L_SQUOTE] = ACTIONS(1359), + [anon_sym_u_SQUOTE] = ACTIONS(1359), + [anon_sym_U_SQUOTE] = ACTIONS(1359), + [anon_sym_u8_SQUOTE] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_L_DQUOTE] = ACTIONS(1359), + [anon_sym_u_DQUOTE] = ACTIONS(1359), + [anon_sym_U_DQUOTE] = ACTIONS(1359), + [anon_sym_u8_DQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [anon_sym_NULL] = ACTIONS(1357), + [anon_sym_nullptr] = ACTIONS(1357), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_attribute_declaration] = STATE(324), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(151), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(1497), + [315] = { + [sym_attribute_declaration] = STATE(345), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_statement] = STATE(236), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym_seh_try_statement] = STATE(250), + [sym_seh_leave_statement] = STATE(250), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48428,22 +48278,22 @@ 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(368), + [anon_sym_SEMI] = ACTIONS(1030), [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(41), + [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(1032), + [anon_sym___leave] = ACTIONS(1034), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -48473,51 +48323,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(1731), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1499), + [316] = { + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1251), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), + [sym_preproc_directive] = ACTIONS(1251), + [anon_sym_LPAREN2] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym___extension__] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1251), + [anon_sym_extern] = ACTIONS(1251), + [anon_sym___attribute__] = ACTIONS(1251), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), + [anon_sym___declspec] = ACTIONS(1251), + [anon_sym___cdecl] = ACTIONS(1251), + [anon_sym___clrcall] = ACTIONS(1251), + [anon_sym___stdcall] = ACTIONS(1251), + [anon_sym___fastcall] = ACTIONS(1251), + [anon_sym___thiscall] = ACTIONS(1251), + [anon_sym___vectorcall] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_signed] = ACTIONS(1251), + [anon_sym_unsigned] = ACTIONS(1251), + [anon_sym_long] = ACTIONS(1251), + [anon_sym_short] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_auto] = ACTIONS(1251), + [anon_sym_register] = ACTIONS(1251), + [anon_sym_inline] = ACTIONS(1251), + [anon_sym___inline] = ACTIONS(1251), + [anon_sym___inline__] = ACTIONS(1251), + [anon_sym___forceinline] = ACTIONS(1251), + [anon_sym_thread_local] = ACTIONS(1251), + [anon_sym___thread] = ACTIONS(1251), + [anon_sym_const] = ACTIONS(1251), + [anon_sym_constexpr] = ACTIONS(1251), + [anon_sym_volatile] = ACTIONS(1251), + [anon_sym_restrict] = ACTIONS(1251), + [anon_sym___restrict__] = ACTIONS(1251), + [anon_sym__Atomic] = ACTIONS(1251), + [anon_sym__Noreturn] = ACTIONS(1251), + [anon_sym_noreturn] = ACTIONS(1251), + [anon_sym__Nonnull] = ACTIONS(1251), + [anon_sym_alignas] = ACTIONS(1251), + [anon_sym__Alignas] = ACTIONS(1251), + [sym_primitive_type] = ACTIONS(1251), + [anon_sym_enum] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_switch] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(1251), + [anon_sym_default] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_goto] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_sizeof] = ACTIONS(1251), + [anon_sym___alignof__] = ACTIONS(1251), + [anon_sym___alignof] = ACTIONS(1251), + [anon_sym__alignof] = ACTIONS(1251), + [anon_sym_alignof] = ACTIONS(1251), + [anon_sym__Alignof] = ACTIONS(1251), + [anon_sym_offsetof] = ACTIONS(1251), + [anon_sym__Generic] = ACTIONS(1251), + [anon_sym_asm] = ACTIONS(1251), + [anon_sym___asm__] = ACTIONS(1251), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_L_SQUOTE] = ACTIONS(1253), + [anon_sym_u_SQUOTE] = ACTIONS(1253), + [anon_sym_U_SQUOTE] = ACTIONS(1253), + [anon_sym_u8_SQUOTE] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_L_DQUOTE] = ACTIONS(1253), + [anon_sym_u_DQUOTE] = ACTIONS(1253), + [anon_sym_U_DQUOTE] = ACTIONS(1253), + [anon_sym_u8_DQUOTE] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [anon_sym_NULL] = ACTIONS(1251), + [anon_sym_nullptr] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + }, + [317] = { + [sym_attribute_declaration] = STATE(345), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_statement] = STATE(238), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym_seh_try_statement] = STATE(250), + [sym_seh_leave_statement] = STATE(250), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48525,22 +48472,22 @@ 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(368), + [anon_sym_SEMI] = ACTIONS(1030), [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(59), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1090), + [anon_sym_case] = ACTIONS(63), + [anon_sym_default] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), + [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(1094), - [anon_sym___leave] = ACTIONS(404), + [anon_sym___try] = ACTIONS(1032), + [anon_sym___leave] = ACTIONS(1034), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -48570,1118 +48517,1603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, + [318] = { + [ts_builtin_sym_end] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), + [sym_preproc_directive] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1341), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym___extension__] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym___attribute__] = ACTIONS(1339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1339), + [anon_sym___cdecl] = ACTIONS(1339), + [anon_sym___clrcall] = ACTIONS(1339), + [anon_sym___stdcall] = ACTIONS(1339), + [anon_sym___fastcall] = ACTIONS(1339), + [anon_sym___thiscall] = ACTIONS(1339), + [anon_sym___vectorcall] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1339), + [anon_sym_unsigned] = ACTIONS(1339), + [anon_sym_long] = ACTIONS(1339), + [anon_sym_short] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1339), + [anon_sym_auto] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_inline] = ACTIONS(1339), + [anon_sym___inline] = ACTIONS(1339), + [anon_sym___inline__] = ACTIONS(1339), + [anon_sym___forceinline] = ACTIONS(1339), + [anon_sym_thread_local] = ACTIONS(1339), + [anon_sym___thread] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_constexpr] = ACTIONS(1339), + [anon_sym_volatile] = ACTIONS(1339), + [anon_sym_restrict] = ACTIONS(1339), + [anon_sym___restrict__] = ACTIONS(1339), + [anon_sym__Atomic] = ACTIONS(1339), + [anon_sym__Noreturn] = ACTIONS(1339), + [anon_sym_noreturn] = ACTIONS(1339), + [anon_sym__Nonnull] = ACTIONS(1339), + [anon_sym_alignas] = ACTIONS(1339), + [anon_sym__Alignas] = ACTIONS(1339), + [sym_primitive_type] = ACTIONS(1339), + [anon_sym_enum] = ACTIONS(1339), + [anon_sym_struct] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1339), + [anon_sym_case] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_sizeof] = ACTIONS(1339), + [anon_sym___alignof__] = ACTIONS(1339), + [anon_sym___alignof] = ACTIONS(1339), + [anon_sym__alignof] = ACTIONS(1339), + [anon_sym_alignof] = ACTIONS(1339), + [anon_sym__Alignof] = ACTIONS(1339), + [anon_sym_offsetof] = ACTIONS(1339), + [anon_sym__Generic] = ACTIONS(1339), + [anon_sym_asm] = ACTIONS(1339), + [anon_sym___asm__] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1341), + [anon_sym_L_SQUOTE] = ACTIONS(1341), + [anon_sym_u_SQUOTE] = ACTIONS(1341), + [anon_sym_U_SQUOTE] = ACTIONS(1341), + [anon_sym_u8_SQUOTE] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_L_DQUOTE] = ACTIONS(1341), + [anon_sym_u_DQUOTE] = ACTIONS(1341), + [anon_sym_U_DQUOTE] = ACTIONS(1341), + [anon_sym_u8_DQUOTE] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(1341), + [sym_true] = ACTIONS(1339), + [sym_false] = ACTIONS(1339), + [anon_sym_NULL] = ACTIONS(1339), + [anon_sym_nullptr] = ACTIONS(1339), + [sym_comment] = ACTIONS(3), + }, + [319] = { + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [sym_preproc_directive] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym___extension__] = ACTIONS(1263), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [anon_sym___inline] = ACTIONS(1263), + [anon_sym___inline__] = ACTIONS(1263), + [anon_sym___forceinline] = ACTIONS(1263), + [anon_sym_thread_local] = ACTIONS(1263), + [anon_sym___thread] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_constexpr] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym___restrict__] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym__Noreturn] = ACTIONS(1263), + [anon_sym_noreturn] = ACTIONS(1263), + [anon_sym__Nonnull] = ACTIONS(1263), + [anon_sym_alignas] = ACTIONS(1263), + [anon_sym__Alignas] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1263), + [anon_sym___alignof__] = ACTIONS(1263), + [anon_sym___alignof] = ACTIONS(1263), + [anon_sym__alignof] = ACTIONS(1263), + [anon_sym_alignof] = ACTIONS(1263), + [anon_sym__Alignof] = ACTIONS(1263), + [anon_sym_offsetof] = ACTIONS(1263), + [anon_sym__Generic] = ACTIONS(1263), + [anon_sym_asm] = ACTIONS(1263), + [anon_sym___asm__] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [anon_sym_NULL] = ACTIONS(1263), + [anon_sym_nullptr] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + }, + [320] = { + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1271), + [aux_sym_preproc_def_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [sym_preproc_directive] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym___extension__] = ACTIONS(1271), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [anon_sym___inline] = ACTIONS(1271), + [anon_sym___inline__] = ACTIONS(1271), + [anon_sym___forceinline] = ACTIONS(1271), + [anon_sym_thread_local] = ACTIONS(1271), + [anon_sym___thread] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_constexpr] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym___restrict__] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym__Noreturn] = ACTIONS(1271), + [anon_sym_noreturn] = ACTIONS(1271), + [anon_sym__Nonnull] = ACTIONS(1271), + [anon_sym_alignas] = ACTIONS(1271), + [anon_sym__Alignas] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1271), + [anon_sym___alignof__] = ACTIONS(1271), + [anon_sym___alignof] = ACTIONS(1271), + [anon_sym__alignof] = ACTIONS(1271), + [anon_sym_alignof] = ACTIONS(1271), + [anon_sym__Alignof] = ACTIONS(1271), + [anon_sym_offsetof] = ACTIONS(1271), + [anon_sym__Generic] = ACTIONS(1271), + [anon_sym_asm] = ACTIONS(1271), + [anon_sym___asm__] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [anon_sym_NULL] = ACTIONS(1271), + [anon_sym_nullptr] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + }, + [321] = { + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [sym_preproc_directive] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym___extension__] = ACTIONS(1275), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [anon_sym___inline] = ACTIONS(1275), + [anon_sym___inline__] = ACTIONS(1275), + [anon_sym___forceinline] = ACTIONS(1275), + [anon_sym_thread_local] = ACTIONS(1275), + [anon_sym___thread] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_constexpr] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym___restrict__] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym__Noreturn] = ACTIONS(1275), + [anon_sym_noreturn] = ACTIONS(1275), + [anon_sym__Nonnull] = ACTIONS(1275), + [anon_sym_alignas] = ACTIONS(1275), + [anon_sym__Alignas] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1275), + [anon_sym___alignof__] = ACTIONS(1275), + [anon_sym___alignof] = ACTIONS(1275), + [anon_sym__alignof] = ACTIONS(1275), + [anon_sym_alignof] = ACTIONS(1275), + [anon_sym__Alignof] = ACTIONS(1275), + [anon_sym_offsetof] = ACTIONS(1275), + [anon_sym__Generic] = ACTIONS(1275), + [anon_sym_asm] = ACTIONS(1275), + [anon_sym___asm__] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [anon_sym_NULL] = ACTIONS(1275), + [anon_sym_nullptr] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + }, [322] = { - [sym_attribute_declaration] = STATE(324), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(155), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), - [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(1281), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [sym_preproc_directive] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym___extension__] = ACTIONS(1279), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [anon_sym___inline] = ACTIONS(1279), + [anon_sym___inline__] = ACTIONS(1279), + [anon_sym___forceinline] = ACTIONS(1279), + [anon_sym_thread_local] = ACTIONS(1279), + [anon_sym___thread] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_constexpr] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym___restrict__] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym__Noreturn] = ACTIONS(1279), + [anon_sym_noreturn] = ACTIONS(1279), + [anon_sym__Nonnull] = ACTIONS(1279), + [anon_sym_alignas] = ACTIONS(1279), + [anon_sym__Alignas] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1279), + [anon_sym___alignof__] = ACTIONS(1279), + [anon_sym___alignof] = ACTIONS(1279), + [anon_sym__alignof] = ACTIONS(1279), + [anon_sym_alignof] = ACTIONS(1279), + [anon_sym__Alignof] = ACTIONS(1279), + [anon_sym_offsetof] = ACTIONS(1279), + [anon_sym__Generic] = ACTIONS(1279), + [anon_sym_asm] = ACTIONS(1279), + [anon_sym___asm__] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [anon_sym_NULL] = ACTIONS(1279), + [anon_sym_nullptr] = ACTIONS(1279), [sym_comment] = ACTIONS(3), }, [323] = { - [sym_attribute_declaration] = STATE(323), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(183), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(323), - [sym_identifier] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1517), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_goto] = ACTIONS(1544), - [anon_sym___try] = ACTIONS(1547), - [anon_sym___leave] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1467), - [anon_sym___alignof__] = ACTIONS(1470), - [anon_sym___alignof] = ACTIONS(1470), - [anon_sym__alignof] = ACTIONS(1470), - [anon_sym_alignof] = ACTIONS(1470), - [anon_sym__Alignof] = ACTIONS(1470), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym___asm__] = ACTIONS(1479), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1485), - [anon_sym_u_SQUOTE] = ACTIONS(1485), - [anon_sym_U_SQUOTE] = ACTIONS(1485), - [anon_sym_u8_SQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_L_DQUOTE] = ACTIONS(1488), - [anon_sym_u_DQUOTE] = ACTIONS(1488), - [anon_sym_U_DQUOTE] = ACTIONS(1488), - [anon_sym_u8_DQUOTE] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [sym_preproc_directive] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym___extension__] = ACTIONS(1283), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [anon_sym___inline] = ACTIONS(1283), + [anon_sym___inline__] = ACTIONS(1283), + [anon_sym___forceinline] = ACTIONS(1283), + [anon_sym_thread_local] = ACTIONS(1283), + [anon_sym___thread] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_constexpr] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym___restrict__] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym__Noreturn] = ACTIONS(1283), + [anon_sym_noreturn] = ACTIONS(1283), + [anon_sym__Nonnull] = ACTIONS(1283), + [anon_sym_alignas] = ACTIONS(1283), + [anon_sym__Alignas] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1283), + [anon_sym___alignof__] = ACTIONS(1283), + [anon_sym___alignof] = ACTIONS(1283), + [anon_sym__alignof] = ACTIONS(1283), + [anon_sym_alignof] = ACTIONS(1283), + [anon_sym__Alignof] = ACTIONS(1283), + [anon_sym_offsetof] = ACTIONS(1283), + [anon_sym__Generic] = ACTIONS(1283), + [anon_sym_asm] = ACTIONS(1283), + [anon_sym___asm__] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [anon_sym_NULL] = ACTIONS(1283), + [anon_sym_nullptr] = ACTIONS(1283), [sym_comment] = ACTIONS(3), }, [324] = { - [sym_attribute_declaration] = STATE(323), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(183), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(323), - [sym_identifier] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), - [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(1289), + [sym_identifier] = ACTIONS(1287), + [aux_sym_preproc_include_token1] = ACTIONS(1287), + [aux_sym_preproc_def_token1] = ACTIONS(1287), + [aux_sym_preproc_if_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_LPAREN2] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym___extension__] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym___attribute__] = ACTIONS(1287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), + [anon_sym___declspec] = ACTIONS(1287), + [anon_sym___cdecl] = ACTIONS(1287), + [anon_sym___clrcall] = ACTIONS(1287), + [anon_sym___stdcall] = ACTIONS(1287), + [anon_sym___fastcall] = ACTIONS(1287), + [anon_sym___thiscall] = ACTIONS(1287), + [anon_sym___vectorcall] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_signed] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym___inline] = ACTIONS(1287), + [anon_sym___inline__] = ACTIONS(1287), + [anon_sym___forceinline] = ACTIONS(1287), + [anon_sym_thread_local] = ACTIONS(1287), + [anon_sym___thread] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_constexpr] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym___restrict__] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym__Noreturn] = ACTIONS(1287), + [anon_sym_noreturn] = ACTIONS(1287), + [anon_sym__Nonnull] = ACTIONS(1287), + [anon_sym_alignas] = ACTIONS(1287), + [anon_sym__Alignas] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_switch] = ACTIONS(1287), + [anon_sym_case] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_goto] = ACTIONS(1287), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_sizeof] = ACTIONS(1287), + [anon_sym___alignof__] = ACTIONS(1287), + [anon_sym___alignof] = ACTIONS(1287), + [anon_sym__alignof] = ACTIONS(1287), + [anon_sym_alignof] = ACTIONS(1287), + [anon_sym__Alignof] = ACTIONS(1287), + [anon_sym_offsetof] = ACTIONS(1287), + [anon_sym__Generic] = ACTIONS(1287), + [anon_sym_asm] = ACTIONS(1287), + [anon_sym___asm__] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(1289), + [anon_sym_L_SQUOTE] = ACTIONS(1289), + [anon_sym_u_SQUOTE] = ACTIONS(1289), + [anon_sym_U_SQUOTE] = ACTIONS(1289), + [anon_sym_u8_SQUOTE] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_L_DQUOTE] = ACTIONS(1289), + [anon_sym_u_DQUOTE] = ACTIONS(1289), + [anon_sym_U_DQUOTE] = ACTIONS(1289), + [anon_sym_u8_DQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym_true] = ACTIONS(1287), + [sym_false] = ACTIONS(1287), + [anon_sym_NULL] = ACTIONS(1287), + [anon_sym_nullptr] = ACTIONS(1287), [sym_comment] = ACTIONS(3), }, [325] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(105), - [sym_statement] = STATE(75), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1397), - [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(1293), + [sym_identifier] = ACTIONS(1291), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_LPAREN2] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym___extension__] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym___attribute__] = ACTIONS(1291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1291), + [anon_sym___cdecl] = ACTIONS(1291), + [anon_sym___clrcall] = ACTIONS(1291), + [anon_sym___stdcall] = ACTIONS(1291), + [anon_sym___fastcall] = ACTIONS(1291), + [anon_sym___thiscall] = ACTIONS(1291), + [anon_sym___vectorcall] = ACTIONS(1291), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym___inline] = ACTIONS(1291), + [anon_sym___inline__] = ACTIONS(1291), + [anon_sym___forceinline] = ACTIONS(1291), + [anon_sym_thread_local] = ACTIONS(1291), + [anon_sym___thread] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_constexpr] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym___restrict__] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym__Noreturn] = ACTIONS(1291), + [anon_sym_noreturn] = ACTIONS(1291), + [anon_sym__Nonnull] = ACTIONS(1291), + [anon_sym_alignas] = ACTIONS(1291), + [anon_sym__Alignas] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_switch] = ACTIONS(1291), + [anon_sym_case] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_sizeof] = ACTIONS(1291), + [anon_sym___alignof__] = ACTIONS(1291), + [anon_sym___alignof] = ACTIONS(1291), + [anon_sym__alignof] = ACTIONS(1291), + [anon_sym_alignof] = ACTIONS(1291), + [anon_sym__Alignof] = ACTIONS(1291), + [anon_sym_offsetof] = ACTIONS(1291), + [anon_sym__Generic] = ACTIONS(1291), + [anon_sym_asm] = ACTIONS(1291), + [anon_sym___asm__] = ACTIONS(1291), + [sym_number_literal] = ACTIONS(1293), + [anon_sym_L_SQUOTE] = ACTIONS(1293), + [anon_sym_u_SQUOTE] = ACTIONS(1293), + [anon_sym_U_SQUOTE] = ACTIONS(1293), + [anon_sym_u8_SQUOTE] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1293), + [anon_sym_L_DQUOTE] = ACTIONS(1293), + [anon_sym_u_DQUOTE] = ACTIONS(1293), + [anon_sym_U_DQUOTE] = ACTIONS(1293), + [anon_sym_u8_DQUOTE] = ACTIONS(1293), + [anon_sym_DQUOTE] = ACTIONS(1293), + [sym_true] = ACTIONS(1291), + [sym_false] = ACTIONS(1291), + [anon_sym_NULL] = ACTIONS(1291), + [anon_sym_nullptr] = ACTIONS(1291), [sym_comment] = ACTIONS(3), }, [326] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(105), - [sym_statement] = STATE(83), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1397), - [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(1305), + [sym_identifier] = ACTIONS(1303), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), + [sym_preproc_directive] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym___extension__] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1303), + [anon_sym_extern] = ACTIONS(1303), + [anon_sym___attribute__] = ACTIONS(1303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1303), + [anon_sym___cdecl] = ACTIONS(1303), + [anon_sym___clrcall] = ACTIONS(1303), + [anon_sym___stdcall] = ACTIONS(1303), + [anon_sym___fastcall] = ACTIONS(1303), + [anon_sym___thiscall] = ACTIONS(1303), + [anon_sym___vectorcall] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1303), + [anon_sym_unsigned] = ACTIONS(1303), + [anon_sym_long] = ACTIONS(1303), + [anon_sym_short] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_auto] = ACTIONS(1303), + [anon_sym_register] = ACTIONS(1303), + [anon_sym_inline] = ACTIONS(1303), + [anon_sym___inline] = ACTIONS(1303), + [anon_sym___inline__] = ACTIONS(1303), + [anon_sym___forceinline] = ACTIONS(1303), + [anon_sym_thread_local] = ACTIONS(1303), + [anon_sym___thread] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_constexpr] = ACTIONS(1303), + [anon_sym_volatile] = ACTIONS(1303), + [anon_sym_restrict] = ACTIONS(1303), + [anon_sym___restrict__] = ACTIONS(1303), + [anon_sym__Atomic] = ACTIONS(1303), + [anon_sym__Noreturn] = ACTIONS(1303), + [anon_sym_noreturn] = ACTIONS(1303), + [anon_sym__Nonnull] = ACTIONS(1303), + [anon_sym_alignas] = ACTIONS(1303), + [anon_sym__Alignas] = ACTIONS(1303), + [sym_primitive_type] = ACTIONS(1303), + [anon_sym_enum] = ACTIONS(1303), + [anon_sym_struct] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_if] = ACTIONS(1303), + [anon_sym_switch] = ACTIONS(1303), + [anon_sym_case] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_while] = ACTIONS(1303), + [anon_sym_do] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1303), + [anon_sym_return] = ACTIONS(1303), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_goto] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1303), + [anon_sym___alignof__] = ACTIONS(1303), + [anon_sym___alignof] = ACTIONS(1303), + [anon_sym__alignof] = ACTIONS(1303), + [anon_sym_alignof] = ACTIONS(1303), + [anon_sym__Alignof] = ACTIONS(1303), + [anon_sym_offsetof] = ACTIONS(1303), + [anon_sym__Generic] = ACTIONS(1303), + [anon_sym_asm] = ACTIONS(1303), + [anon_sym___asm__] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1305), + [anon_sym_L_SQUOTE] = ACTIONS(1305), + [anon_sym_u_SQUOTE] = ACTIONS(1305), + [anon_sym_U_SQUOTE] = ACTIONS(1305), + [anon_sym_u8_SQUOTE] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1305), + [anon_sym_L_DQUOTE] = ACTIONS(1305), + [anon_sym_u_DQUOTE] = ACTIONS(1305), + [anon_sym_U_DQUOTE] = ACTIONS(1305), + [anon_sym_u8_DQUOTE] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(1305), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [anon_sym_NULL] = ACTIONS(1303), + [anon_sym_nullptr] = ACTIONS(1303), [sym_comment] = ACTIONS(3), }, [327] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(105), - [sym_statement] = STATE(86), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1397), - [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(1337), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), + [sym_preproc_directive] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1337), + [anon_sym_BANG] = ACTIONS(1337), + [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym___extension__] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym___attribute__] = ACTIONS(1335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1335), + [anon_sym___cdecl] = ACTIONS(1335), + [anon_sym___clrcall] = ACTIONS(1335), + [anon_sym___stdcall] = ACTIONS(1335), + [anon_sym___fastcall] = ACTIONS(1335), + [anon_sym___thiscall] = ACTIONS(1335), + [anon_sym___vectorcall] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1335), + [anon_sym_unsigned] = ACTIONS(1335), + [anon_sym_long] = ACTIONS(1335), + [anon_sym_short] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_auto] = ACTIONS(1335), + [anon_sym_register] = ACTIONS(1335), + [anon_sym_inline] = ACTIONS(1335), + [anon_sym___inline] = ACTIONS(1335), + [anon_sym___inline__] = ACTIONS(1335), + [anon_sym___forceinline] = ACTIONS(1335), + [anon_sym_thread_local] = ACTIONS(1335), + [anon_sym___thread] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_constexpr] = ACTIONS(1335), + [anon_sym_volatile] = ACTIONS(1335), + [anon_sym_restrict] = ACTIONS(1335), + [anon_sym___restrict__] = ACTIONS(1335), + [anon_sym__Atomic] = ACTIONS(1335), + [anon_sym__Noreturn] = ACTIONS(1335), + [anon_sym_noreturn] = ACTIONS(1335), + [anon_sym__Nonnull] = ACTIONS(1335), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_switch] = ACTIONS(1335), + [anon_sym_case] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_do] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_goto] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_sizeof] = ACTIONS(1335), + [anon_sym___alignof__] = ACTIONS(1335), + [anon_sym___alignof] = ACTIONS(1335), + [anon_sym__alignof] = ACTIONS(1335), + [anon_sym_alignof] = ACTIONS(1335), + [anon_sym__Alignof] = ACTIONS(1335), + [anon_sym_offsetof] = ACTIONS(1335), + [anon_sym__Generic] = ACTIONS(1335), + [anon_sym_asm] = ACTIONS(1335), + [anon_sym___asm__] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1337), + [anon_sym_L_SQUOTE] = ACTIONS(1337), + [anon_sym_u_SQUOTE] = ACTIONS(1337), + [anon_sym_U_SQUOTE] = ACTIONS(1337), + [anon_sym_u8_SQUOTE] = ACTIONS(1337), + [anon_sym_SQUOTE] = ACTIONS(1337), + [anon_sym_L_DQUOTE] = ACTIONS(1337), + [anon_sym_u_DQUOTE] = ACTIONS(1337), + [anon_sym_U_DQUOTE] = ACTIONS(1337), + [anon_sym_u8_DQUOTE] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_true] = ACTIONS(1335), + [sym_false] = ACTIONS(1335), + [anon_sym_NULL] = ACTIONS(1335), + [anon_sym_nullptr] = ACTIONS(1335), [sym_comment] = ACTIONS(3), }, [328] = { - [sym_attribute_declaration] = STATE(328), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(105), - [sym_statement] = STATE(77), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1586), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_goto] = ACTIONS(1592), - [anon_sym___try] = ACTIONS(1595), - [anon_sym___leave] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1467), - [anon_sym___alignof__] = ACTIONS(1470), - [anon_sym___alignof] = ACTIONS(1470), - [anon_sym__alignof] = ACTIONS(1470), - [anon_sym_alignof] = ACTIONS(1470), - [anon_sym__Alignof] = ACTIONS(1470), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym___asm__] = ACTIONS(1479), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1485), - [anon_sym_u_SQUOTE] = ACTIONS(1485), - [anon_sym_U_SQUOTE] = ACTIONS(1485), - [anon_sym_u8_SQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_L_DQUOTE] = ACTIONS(1488), - [anon_sym_u_DQUOTE] = ACTIONS(1488), - [anon_sym_U_DQUOTE] = ACTIONS(1488), - [anon_sym_u8_DQUOTE] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1331), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_TILDE] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym___extension__] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1331), + [anon_sym_extern] = ACTIONS(1331), + [anon_sym___attribute__] = ACTIONS(1331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1331), + [anon_sym_unsigned] = ACTIONS(1331), + [anon_sym_long] = ACTIONS(1331), + [anon_sym_short] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1331), + [anon_sym_auto] = ACTIONS(1331), + [anon_sym_register] = ACTIONS(1331), + [anon_sym_inline] = ACTIONS(1331), + [anon_sym___inline] = ACTIONS(1331), + [anon_sym___inline__] = ACTIONS(1331), + [anon_sym___forceinline] = ACTIONS(1331), + [anon_sym_thread_local] = ACTIONS(1331), + [anon_sym___thread] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_constexpr] = ACTIONS(1331), + [anon_sym_volatile] = ACTIONS(1331), + [anon_sym_restrict] = ACTIONS(1331), + [anon_sym___restrict__] = ACTIONS(1331), + [anon_sym__Atomic] = ACTIONS(1331), + [anon_sym__Noreturn] = ACTIONS(1331), + [anon_sym_noreturn] = ACTIONS(1331), + [anon_sym__Nonnull] = ACTIONS(1331), + [anon_sym_alignas] = ACTIONS(1331), + [anon_sym__Alignas] = ACTIONS(1331), + [sym_primitive_type] = ACTIONS(1331), + [anon_sym_enum] = ACTIONS(1331), + [anon_sym_struct] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1331), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(1331), + [anon_sym_do] = ACTIONS(1331), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1331), + [anon_sym_continue] = ACTIONS(1331), + [anon_sym_goto] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1331), + [anon_sym___alignof__] = ACTIONS(1331), + [anon_sym___alignof] = ACTIONS(1331), + [anon_sym__alignof] = ACTIONS(1331), + [anon_sym_alignof] = ACTIONS(1331), + [anon_sym__Alignof] = ACTIONS(1331), + [anon_sym_offsetof] = ACTIONS(1331), + [anon_sym__Generic] = ACTIONS(1331), + [anon_sym_asm] = ACTIONS(1331), + [anon_sym___asm__] = ACTIONS(1331), + [sym_number_literal] = ACTIONS(1333), + [anon_sym_L_SQUOTE] = ACTIONS(1333), + [anon_sym_u_SQUOTE] = ACTIONS(1333), + [anon_sym_U_SQUOTE] = ACTIONS(1333), + [anon_sym_u8_SQUOTE] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1333), + [anon_sym_L_DQUOTE] = ACTIONS(1333), + [anon_sym_u_DQUOTE] = ACTIONS(1333), + [anon_sym_U_DQUOTE] = ACTIONS(1333), + [anon_sym_u8_DQUOTE] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1333), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [anon_sym_NULL] = ACTIONS(1331), + [anon_sym_nullptr] = ACTIONS(1331), [sym_comment] = ACTIONS(3), }, [329] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(1952), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), - [anon_sym___leave] = ACTIONS(404), - [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(1345), + [sym_identifier] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1343), + [sym_preproc_directive] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1345), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym___extension__] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1343), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym___attribute__] = ACTIONS(1343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1343), + [anon_sym___cdecl] = ACTIONS(1343), + [anon_sym___clrcall] = ACTIONS(1343), + [anon_sym___stdcall] = ACTIONS(1343), + [anon_sym___fastcall] = ACTIONS(1343), + [anon_sym___thiscall] = ACTIONS(1343), + [anon_sym___vectorcall] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1343), + [anon_sym_unsigned] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_auto] = ACTIONS(1343), + [anon_sym_register] = ACTIONS(1343), + [anon_sym_inline] = ACTIONS(1343), + [anon_sym___inline] = ACTIONS(1343), + [anon_sym___inline__] = ACTIONS(1343), + [anon_sym___forceinline] = ACTIONS(1343), + [anon_sym_thread_local] = ACTIONS(1343), + [anon_sym___thread] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_constexpr] = ACTIONS(1343), + [anon_sym_volatile] = ACTIONS(1343), + [anon_sym_restrict] = ACTIONS(1343), + [anon_sym___restrict__] = ACTIONS(1343), + [anon_sym__Atomic] = ACTIONS(1343), + [anon_sym__Noreturn] = ACTIONS(1343), + [anon_sym_noreturn] = ACTIONS(1343), + [anon_sym__Nonnull] = ACTIONS(1343), + [anon_sym_alignas] = ACTIONS(1343), + [anon_sym__Alignas] = ACTIONS(1343), + [sym_primitive_type] = ACTIONS(1343), + [anon_sym_enum] = ACTIONS(1343), + [anon_sym_struct] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_goto] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_sizeof] = ACTIONS(1343), + [anon_sym___alignof__] = ACTIONS(1343), + [anon_sym___alignof] = ACTIONS(1343), + [anon_sym__alignof] = ACTIONS(1343), + [anon_sym_alignof] = ACTIONS(1343), + [anon_sym__Alignof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1343), + [anon_sym__Generic] = ACTIONS(1343), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym___asm__] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_L_SQUOTE] = ACTIONS(1345), + [anon_sym_u_SQUOTE] = ACTIONS(1345), + [anon_sym_U_SQUOTE] = ACTIONS(1345), + [anon_sym_u8_SQUOTE] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_L_DQUOTE] = ACTIONS(1345), + [anon_sym_u_DQUOTE] = ACTIONS(1345), + [anon_sym_U_DQUOTE] = ACTIONS(1345), + [anon_sym_u8_DQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [anon_sym_NULL] = ACTIONS(1343), + [anon_sym_nullptr] = ACTIONS(1343), [sym_comment] = ACTIONS(3), }, [330] = { - [sym_attribute_declaration] = STATE(324), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(176), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), - [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_attribute_declaration] = STATE(330), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_statement] = STATE(206), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym_seh_try_statement] = STATE(250), + [sym_seh_leave_statement] = STATE(250), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1399), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1453), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1465), + [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(1471), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym___asm__] = ACTIONS(1477), + [sym_number_literal] = ACTIONS(1480), + [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(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, [331] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(105), - [sym_statement] = STATE(101), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1397), - [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(1257), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(1255), + [aux_sym_preproc_def_token1] = ACTIONS(1255), + [aux_sym_preproc_if_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), + [sym_preproc_directive] = ACTIONS(1255), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym___extension__] = ACTIONS(1255), + [anon_sym_typedef] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym___attribute__] = ACTIONS(1255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), + [anon_sym___declspec] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1255), + [anon_sym___clrcall] = ACTIONS(1255), + [anon_sym___stdcall] = ACTIONS(1255), + [anon_sym___fastcall] = ACTIONS(1255), + [anon_sym___thiscall] = ACTIONS(1255), + [anon_sym___vectorcall] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_signed] = ACTIONS(1255), + [anon_sym_unsigned] = ACTIONS(1255), + [anon_sym_long] = ACTIONS(1255), + [anon_sym_short] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_auto] = ACTIONS(1255), + [anon_sym_register] = ACTIONS(1255), + [anon_sym_inline] = ACTIONS(1255), + [anon_sym___inline] = ACTIONS(1255), + [anon_sym___inline__] = ACTIONS(1255), + [anon_sym___forceinline] = ACTIONS(1255), + [anon_sym_thread_local] = ACTIONS(1255), + [anon_sym___thread] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_constexpr] = ACTIONS(1255), + [anon_sym_volatile] = ACTIONS(1255), + [anon_sym_restrict] = ACTIONS(1255), + [anon_sym___restrict__] = ACTIONS(1255), + [anon_sym__Atomic] = ACTIONS(1255), + [anon_sym__Noreturn] = ACTIONS(1255), + [anon_sym_noreturn] = ACTIONS(1255), + [anon_sym__Nonnull] = ACTIONS(1255), + [anon_sym_alignas] = ACTIONS(1255), + [anon_sym__Alignas] = ACTIONS(1255), + [sym_primitive_type] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_switch] = ACTIONS(1255), + [anon_sym_case] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_do] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_goto] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1255), + [anon_sym___alignof__] = ACTIONS(1255), + [anon_sym___alignof] = ACTIONS(1255), + [anon_sym__alignof] = ACTIONS(1255), + [anon_sym_alignof] = ACTIONS(1255), + [anon_sym__Alignof] = ACTIONS(1255), + [anon_sym_offsetof] = ACTIONS(1255), + [anon_sym__Generic] = ACTIONS(1255), + [anon_sym_asm] = ACTIONS(1255), + [anon_sym___asm__] = ACTIONS(1255), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [anon_sym_NULL] = ACTIONS(1255), + [anon_sym_nullptr] = ACTIONS(1255), [sym_comment] = ACTIONS(3), }, [332] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(400), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), - [anon_sym___leave] = ACTIONS(404), - [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(1261), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym___extension__] = ACTIONS(1259), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [anon_sym___inline] = ACTIONS(1259), + [anon_sym___inline__] = ACTIONS(1259), + [anon_sym___forceinline] = ACTIONS(1259), + [anon_sym_thread_local] = ACTIONS(1259), + [anon_sym___thread] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_constexpr] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym___restrict__] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym__Noreturn] = ACTIONS(1259), + [anon_sym_noreturn] = ACTIONS(1259), + [anon_sym__Nonnull] = ACTIONS(1259), + [anon_sym_alignas] = ACTIONS(1259), + [anon_sym__Alignas] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1259), + [anon_sym___alignof__] = ACTIONS(1259), + [anon_sym___alignof] = ACTIONS(1259), + [anon_sym__alignof] = ACTIONS(1259), + [anon_sym_alignof] = ACTIONS(1259), + [anon_sym__Alignof] = ACTIONS(1259), + [anon_sym_offsetof] = ACTIONS(1259), + [anon_sym__Generic] = ACTIONS(1259), + [anon_sym_asm] = ACTIONS(1259), + [anon_sym___asm__] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [anon_sym_NULL] = ACTIONS(1259), + [anon_sym_nullptr] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + }, + [333] = { + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_identifier] = ACTIONS(1295), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym___extension__] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym___attribute__] = ACTIONS(1295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1295), + [anon_sym___cdecl] = ACTIONS(1295), + [anon_sym___clrcall] = ACTIONS(1295), + [anon_sym___stdcall] = ACTIONS(1295), + [anon_sym___fastcall] = ACTIONS(1295), + [anon_sym___thiscall] = ACTIONS(1295), + [anon_sym___vectorcall] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym___inline] = ACTIONS(1295), + [anon_sym___inline__] = ACTIONS(1295), + [anon_sym___forceinline] = ACTIONS(1295), + [anon_sym_thread_local] = ACTIONS(1295), + [anon_sym___thread] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_constexpr] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym___restrict__] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym__Noreturn] = ACTIONS(1295), + [anon_sym_noreturn] = ACTIONS(1295), + [anon_sym__Nonnull] = ACTIONS(1295), + [anon_sym_alignas] = ACTIONS(1295), + [anon_sym__Alignas] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1295), + [anon_sym_case] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_while] = ACTIONS(1295), + [anon_sym_do] = ACTIONS(1295), + [anon_sym_for] = ACTIONS(1295), + [anon_sym_return] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1295), + [anon_sym_continue] = ACTIONS(1295), + [anon_sym_goto] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_sizeof] = ACTIONS(1295), + [anon_sym___alignof__] = ACTIONS(1295), + [anon_sym___alignof] = ACTIONS(1295), + [anon_sym__alignof] = ACTIONS(1295), + [anon_sym_alignof] = ACTIONS(1295), + [anon_sym__Alignof] = ACTIONS(1295), + [anon_sym_offsetof] = ACTIONS(1295), + [anon_sym__Generic] = ACTIONS(1295), + [anon_sym_asm] = ACTIONS(1295), + [anon_sym___asm__] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1297), + [anon_sym_L_SQUOTE] = ACTIONS(1297), + [anon_sym_u_SQUOTE] = ACTIONS(1297), + [anon_sym_U_SQUOTE] = ACTIONS(1297), + [anon_sym_u8_SQUOTE] = ACTIONS(1297), + [anon_sym_SQUOTE] = ACTIONS(1297), + [anon_sym_L_DQUOTE] = ACTIONS(1297), + [anon_sym_u_DQUOTE] = ACTIONS(1297), + [anon_sym_U_DQUOTE] = ACTIONS(1297), + [anon_sym_u8_DQUOTE] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym_true] = ACTIONS(1295), + [sym_false] = ACTIONS(1295), + [anon_sym_NULL] = ACTIONS(1295), + [anon_sym_nullptr] = ACTIONS(1295), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(246), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1499), + [334] = { + [sym_attribute_declaration] = STATE(363), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(1854), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1495), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49694,8 +50126,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(1088), [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), [anon_sym_while] = ACTIONS(1090), [anon_sym_do] = ACTIONS(69), [anon_sym_for] = ACTIONS(1092), @@ -49734,51 +50166,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(157), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1499), + [335] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(143), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1501), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49788,19 +50220,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), @@ -49831,148 +50263,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [335] = { - [sym_attribute_declaration] = STATE(335), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(195), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1607), - [anon_sym_default] = ACTIONS(1610), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1455), - [anon_sym___try] = ACTIONS(1619), - [anon_sym___leave] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1467), - [anon_sym___alignof__] = ACTIONS(1470), - [anon_sym___alignof] = ACTIONS(1470), - [anon_sym__alignof] = ACTIONS(1470), - [anon_sym_alignof] = ACTIONS(1470), - [anon_sym__Alignof] = ACTIONS(1470), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym___asm__] = ACTIONS(1479), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1485), - [anon_sym_u_SQUOTE] = ACTIONS(1485), - [anon_sym_U_SQUOTE] = ACTIONS(1485), - [anon_sym_u8_SQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_L_DQUOTE] = ACTIONS(1488), - [anon_sym_u_DQUOTE] = ACTIONS(1488), - [anon_sym_U_DQUOTE] = ACTIONS(1488), - [anon_sym_u8_DQUOTE] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - }, [336] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(234), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1499), + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(154), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1501), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49982,19 +50317,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), @@ -50026,50 +50361,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [337] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(236), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1499), + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(156), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1501), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50079,19 +50414,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(368), [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), @@ -50123,50 +50458,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [338] = { - [sym_attribute_declaration] = STATE(318), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_statement] = STATE(234), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym_seh_try_statement] = STATE(247), - [sym_seh_leave_statement] = STATE(247), - [sym_expression] = STATE(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(1399), + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(165), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1515), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1527), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1539), + [anon_sym_goto] = ACTIONS(1542), + [anon_sym___try] = ACTIONS(1545), + [anon_sym___leave] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1465), + [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(1471), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym___asm__] = ACTIONS(1477), + [sym_number_literal] = ACTIONS(1480), + [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(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [aux_sym_preproc_include_token1] = ACTIONS(1553), + [aux_sym_preproc_def_token1] = ACTIONS(1553), + [aux_sym_preproc_if_token1] = ACTIONS(1553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1553), + [sym_preproc_directive] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym___extension__] = ACTIONS(1553), + [anon_sym_typedef] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym___attribute__] = ACTIONS(1553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), + [anon_sym___declspec] = ACTIONS(1553), + [anon_sym___cdecl] = ACTIONS(1553), + [anon_sym___clrcall] = ACTIONS(1553), + [anon_sym___stdcall] = ACTIONS(1553), + [anon_sym___fastcall] = ACTIONS(1553), + [anon_sym___thiscall] = ACTIONS(1553), + [anon_sym___vectorcall] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_signed] = ACTIONS(1553), + [anon_sym_unsigned] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_auto] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_inline] = ACTIONS(1553), + [anon_sym___inline] = ACTIONS(1553), + [anon_sym___inline__] = ACTIONS(1553), + [anon_sym___forceinline] = ACTIONS(1553), + [anon_sym_thread_local] = ACTIONS(1553), + [anon_sym___thread] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_constexpr] = ACTIONS(1553), + [anon_sym_volatile] = ACTIONS(1553), + [anon_sym_restrict] = ACTIONS(1553), + [anon_sym___restrict__] = ACTIONS(1553), + [anon_sym__Atomic] = ACTIONS(1553), + [anon_sym__Noreturn] = ACTIONS(1553), + [anon_sym_noreturn] = ACTIONS(1553), + [anon_sym__Nonnull] = ACTIONS(1553), + [anon_sym_alignas] = ACTIONS(1553), + [anon_sym__Alignas] = ACTIONS(1553), + [sym_primitive_type] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_struct] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_goto] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_sizeof] = ACTIONS(1553), + [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(1553), + [anon_sym__Generic] = ACTIONS(1553), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym___asm__] = ACTIONS(1553), + [sym_number_literal] = ACTIONS(1551), + [anon_sym_L_SQUOTE] = ACTIONS(1551), + [anon_sym_u_SQUOTE] = ACTIONS(1551), + [anon_sym_U_SQUOTE] = ACTIONS(1551), + [anon_sym_u8_SQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_L_DQUOTE] = ACTIONS(1551), + [anon_sym_u_DQUOTE] = ACTIONS(1551), + [anon_sym_U_DQUOTE] = ACTIONS(1551), + [anon_sym_u8_DQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [anon_sym_NULL] = ACTIONS(1553), + [anon_sym_nullptr] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [sym_attribute_declaration] = STATE(345), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_statement] = STATE(145), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym_seh_try_statement] = STATE(250), + [sym_seh_leave_statement] = STATE(250), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50219,536 +50748,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_attribute_declaration] = STATE(335), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(195), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), - [anon_sym___leave] = ACTIONS(404), - [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), - }, - [340] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(186), - [sym_attributed_statement] = STATE(186), - [sym_statement] = STATE(145), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1622), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_if] = ACTIONS(584), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(588), - [anon_sym_default] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(598), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(606), - [anon_sym___leave] = ACTIONS(608), - [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), - }, [341] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(186), - [sym_attributed_statement] = STATE(186), - [sym_statement] = STATE(197), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1622), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_if] = ACTIONS(584), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(588), - [anon_sym_default] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(598), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(606), - [anon_sym___leave] = ACTIONS(608), - [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), - }, - [342] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(186), - [sym_attributed_statement] = STATE(186), - [sym_statement] = STATE(200), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1622), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_if] = ACTIONS(584), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(588), - [anon_sym_default] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(598), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(606), - [anon_sym___leave] = ACTIONS(608), - [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), - }, - [343] = { - [sym_attribute_declaration] = STATE(343), - [sym_compound_statement] = STATE(186), - [sym_attributed_statement] = STATE(186), - [sym_statement] = STATE(190), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1624), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_case] = ACTIONS(1639), - [anon_sym_default] = ACTIONS(1642), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym___try] = ACTIONS(1666), - [anon_sym___leave] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1467), - [anon_sym___alignof__] = ACTIONS(1470), - [anon_sym___alignof] = ACTIONS(1470), - [anon_sym__alignof] = ACTIONS(1470), - [anon_sym_alignof] = ACTIONS(1470), - [anon_sym__Alignof] = ACTIONS(1470), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym___asm__] = ACTIONS(1479), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1485), - [anon_sym_u_SQUOTE] = ACTIONS(1485), - [anon_sym_U_SQUOTE] = ACTIONS(1485), - [anon_sym_u8_SQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_L_DQUOTE] = ACTIONS(1488), - [anon_sym_u_DQUOTE] = ACTIONS(1488), - [anon_sym_U_DQUOTE] = ACTIONS(1488), - [anon_sym_u8_DQUOTE] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [anon_sym_NULL] = ACTIONS(1494), - [anon_sym_nullptr] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - }, - [344] = { - [sym_attribute_declaration] = STATE(318), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_statement] = STATE(143), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym_seh_try_statement] = STATE(247), - [sym_seh_leave_statement] = STATE(247), - [sym_expression] = STATE(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(1399), + [sym_attribute_declaration] = STATE(345), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_statement] = STATE(159), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym_seh_try_statement] = STATE(250), + [sym_seh_leave_statement] = STATE(250), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50801,342 +50845,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [345] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(186), - [sym_attributed_statement] = STATE(186), - [sym_statement] = STATE(208), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1622), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_if] = ACTIONS(584), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(588), - [anon_sym_default] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(598), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(606), - [anon_sym___leave] = ACTIONS(608), - [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), - }, - [346] = { - [sym_attribute_declaration] = STATE(348), - [sym_compound_statement] = STATE(186), - [sym_attributed_statement] = STATE(186), - [sym_statement] = STATE(210), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(1622), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_if] = ACTIONS(584), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(588), - [anon_sym_default] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(598), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(606), - [anon_sym___leave] = ACTIONS(608), - [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), + [342] = { + [ts_builtin_sym_end] = ACTIONS(1555), + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1555), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [anon_sym__Nonnull] = ACTIONS(1558), + [anon_sym_alignas] = ACTIONS(1558), + [anon_sym__Alignas] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1555), + [anon_sym_L_SQUOTE] = ACTIONS(1555), + [anon_sym_u_SQUOTE] = ACTIONS(1555), + [anon_sym_U_SQUOTE] = ACTIONS(1555), + [anon_sym_u8_SQUOTE] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_L_DQUOTE] = ACTIONS(1555), + [anon_sym_u_DQUOTE] = ACTIONS(1555), + [anon_sym_U_DQUOTE] = ACTIONS(1555), + [anon_sym_u8_DQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_attribute_declaration] = STATE(328), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(105), - [sym_statement] = STATE(77), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(1018), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [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(1397), - [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), + [343] = { + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [sym_preproc_directive] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym___extension__] = ACTIONS(1267), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [anon_sym___inline] = ACTIONS(1267), + [anon_sym___inline__] = ACTIONS(1267), + [anon_sym___forceinline] = ACTIONS(1267), + [anon_sym_thread_local] = ACTIONS(1267), + [anon_sym___thread] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_constexpr] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym___restrict__] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym__Noreturn] = ACTIONS(1267), + [anon_sym_noreturn] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym_alignas] = ACTIONS(1267), + [anon_sym__Alignas] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1267), + [anon_sym___alignof__] = ACTIONS(1267), + [anon_sym___alignof] = ACTIONS(1267), + [anon_sym__alignof] = ACTIONS(1267), + [anon_sym_alignof] = ACTIONS(1267), + [anon_sym__Alignof] = ACTIONS(1267), + [anon_sym_offsetof] = ACTIONS(1267), + [anon_sym__Generic] = ACTIONS(1267), + [anon_sym_asm] = ACTIONS(1267), + [anon_sym___asm__] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [anon_sym_NULL] = ACTIONS(1267), + [anon_sym_nullptr] = ACTIONS(1267), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_attribute_declaration] = STATE(343), - [sym_compound_statement] = STATE(186), - [sym_attributed_statement] = STATE(186), - [sym_statement] = STATE(190), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym_seh_try_statement] = STATE(186), - [sym_seh_leave_statement] = STATE(186), - [sym_expression] = STATE(1028), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1622), + [344] = { + [sym_attribute_declaration] = STATE(338), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(165), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(1501), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51144,22 +51091,22 @@ 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(574), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_if] = ACTIONS(584), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(588), - [anon_sym_default] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_for] = ACTIONS(596), - [anon_sym_return] = ACTIONS(598), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(604), - [anon_sym___try] = ACTIONS(606), - [anon_sym___leave] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -51189,51 +51136,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_attribute_declaration] = STATE(318), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_statement] = STATE(246), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym_seh_try_statement] = STATE(247), - [sym_seh_leave_statement] = STATE(247), - [sym_expression] = STATE(1027), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1913), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(1399), + [345] = { + [sym_attribute_declaration] = STATE(330), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_statement] = STATE(206), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym_seh_try_statement] = STATE(250), + [sym_seh_leave_statement] = STATE(250), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1395), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51286,51 +51233,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_attribute_declaration] = STATE(324), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(174), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(1497), + [346] = { + [sym_attribute_declaration] = STATE(374), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_statement] = STATE(75), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(1561), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51338,22 +51285,22 @@ 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(368), + [anon_sym_SEMI] = ACTIONS(123), [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(376), - [anon_sym_if] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_case] = ACTIONS(384), - [anon_sym_default] = ACTIONS(386), - [anon_sym_while] = ACTIONS(388), - [anon_sym_do] = ACTIONS(390), - [anon_sym_for] = ACTIONS(392), - [anon_sym_return] = ACTIONS(394), - [anon_sym_break] = ACTIONS(396), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_goto] = ACTIONS(400), - [anon_sym___try] = ACTIONS(402), - [anon_sym___leave] = ACTIONS(404), + [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), @@ -51383,51 +51330,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(1948), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1499), + [347] = { + [sym_attribute_declaration] = STATE(374), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_statement] = STATE(89), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(1561), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51435,22 +51382,22 @@ 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(368), + [anon_sym_SEMI] = ACTIONS(123), [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), - [anon_sym___leave] = ACTIONS(404), + [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), @@ -51480,51 +51427,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_attribute_declaration] = STATE(339), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_statement] = STATE(1961), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym_seh_try_statement] = STATE(196), - [sym_seh_leave_statement] = STATE(196), - [sym_expression] = STATE(1017), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1740), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_attributed_declarator_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1499), + [348] = { + [sym_attribute_declaration] = STATE(374), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_statement] = STATE(92), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(1561), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51532,22 +51479,22 @@ 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(368), + [anon_sym_SEMI] = ACTIONS(123), [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1094), - [anon_sym___leave] = ACTIONS(404), + [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), @@ -51577,679 +51524,783 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1675), - [aux_sym_preproc_include_token1] = ACTIONS(1675), - [aux_sym_preproc_def_token1] = ACTIONS(1675), - [aux_sym_preproc_if_token1] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1675), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1675), - [sym_preproc_directive] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym___extension__] = ACTIONS(1675), - [anon_sym_typedef] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym___attribute__] = ACTIONS(1675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1672), - [anon_sym___declspec] = ACTIONS(1675), - [anon_sym___cdecl] = ACTIONS(1675), - [anon_sym___clrcall] = ACTIONS(1675), - [anon_sym___stdcall] = ACTIONS(1675), - [anon_sym___fastcall] = ACTIONS(1675), - [anon_sym___thiscall] = ACTIONS(1675), - [anon_sym___vectorcall] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_signed] = ACTIONS(1675), - [anon_sym_unsigned] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_auto] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(1675), - [anon_sym___inline] = ACTIONS(1675), - [anon_sym___inline__] = ACTIONS(1675), - [anon_sym___forceinline] = ACTIONS(1675), - [anon_sym_thread_local] = ACTIONS(1675), - [anon_sym___thread] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_constexpr] = ACTIONS(1675), - [anon_sym_volatile] = ACTIONS(1675), - [anon_sym_restrict] = ACTIONS(1675), - [anon_sym___restrict__] = ACTIONS(1675), - [anon_sym__Atomic] = ACTIONS(1675), - [anon_sym__Noreturn] = ACTIONS(1675), - [anon_sym_noreturn] = ACTIONS(1675), - [anon_sym_alignas] = ACTIONS(1675), - [anon_sym__Alignas] = ACTIONS(1675), - [sym_primitive_type] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_switch] = ACTIONS(1675), - [anon_sym_case] = ACTIONS(1675), - [anon_sym_default] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_goto] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_sizeof] = ACTIONS(1675), - [anon_sym___alignof__] = ACTIONS(1675), - [anon_sym___alignof] = ACTIONS(1675), - [anon_sym__alignof] = ACTIONS(1675), - [anon_sym_alignof] = ACTIONS(1675), - [anon_sym__Alignof] = ACTIONS(1675), - [anon_sym_offsetof] = ACTIONS(1675), - [anon_sym__Generic] = ACTIONS(1675), - [anon_sym_asm] = ACTIONS(1675), - [anon_sym___asm__] = ACTIONS(1675), - [sym_number_literal] = ACTIONS(1672), - [anon_sym_L_SQUOTE] = ACTIONS(1672), - [anon_sym_u_SQUOTE] = ACTIONS(1672), - [anon_sym_U_SQUOTE] = ACTIONS(1672), - [anon_sym_u8_SQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_L_DQUOTE] = ACTIONS(1672), - [anon_sym_u_DQUOTE] = ACTIONS(1672), - [anon_sym_U_DQUOTE] = ACTIONS(1672), - [anon_sym_u8_DQUOTE] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [anon_sym_NULL] = ACTIONS(1675), - [anon_sym_nullptr] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1281), - [sym_identifier] = ACTIONS(1279), - [aux_sym_preproc_include_token1] = ACTIONS(1279), - [aux_sym_preproc_def_token1] = ACTIONS(1279), - [aux_sym_preproc_if_token1] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), - [sym_preproc_directive] = ACTIONS(1279), - [anon_sym_LPAREN2] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym___extension__] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym___attribute__] = ACTIONS(1279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1281), - [anon_sym___declspec] = ACTIONS(1279), - [anon_sym___cdecl] = ACTIONS(1279), - [anon_sym___clrcall] = ACTIONS(1279), - [anon_sym___stdcall] = ACTIONS(1279), - [anon_sym___fastcall] = ACTIONS(1279), - [anon_sym___thiscall] = ACTIONS(1279), - [anon_sym___vectorcall] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_signed] = ACTIONS(1279), - [anon_sym_unsigned] = ACTIONS(1279), - [anon_sym_long] = ACTIONS(1279), - [anon_sym_short] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_auto] = ACTIONS(1279), - [anon_sym_register] = ACTIONS(1279), - [anon_sym_inline] = ACTIONS(1279), - [anon_sym___inline] = ACTIONS(1279), - [anon_sym___inline__] = ACTIONS(1279), - [anon_sym___forceinline] = ACTIONS(1279), - [anon_sym_thread_local] = ACTIONS(1279), - [anon_sym___thread] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_constexpr] = ACTIONS(1279), - [anon_sym_volatile] = ACTIONS(1279), - [anon_sym_restrict] = ACTIONS(1279), - [anon_sym___restrict__] = ACTIONS(1279), - [anon_sym__Atomic] = ACTIONS(1279), - [anon_sym__Noreturn] = ACTIONS(1279), - [anon_sym_noreturn] = ACTIONS(1279), - [anon_sym_alignas] = ACTIONS(1279), - [anon_sym__Alignas] = ACTIONS(1279), - [sym_primitive_type] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1279), - [anon_sym_switch] = ACTIONS(1279), - [anon_sym_case] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_while] = ACTIONS(1279), - [anon_sym_do] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1279), - [anon_sym_continue] = ACTIONS(1279), - [anon_sym_goto] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1281), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_sizeof] = ACTIONS(1279), - [anon_sym___alignof__] = ACTIONS(1279), - [anon_sym___alignof] = ACTIONS(1279), - [anon_sym__alignof] = ACTIONS(1279), - [anon_sym_alignof] = ACTIONS(1279), - [anon_sym__Alignof] = ACTIONS(1279), - [anon_sym_offsetof] = ACTIONS(1279), - [anon_sym__Generic] = ACTIONS(1279), - [anon_sym_asm] = ACTIONS(1279), - [anon_sym___asm__] = ACTIONS(1279), - [sym_number_literal] = ACTIONS(1281), - [anon_sym_L_SQUOTE] = ACTIONS(1281), - [anon_sym_u_SQUOTE] = ACTIONS(1281), - [anon_sym_U_SQUOTE] = ACTIONS(1281), - [anon_sym_u8_SQUOTE] = ACTIONS(1281), - [anon_sym_SQUOTE] = ACTIONS(1281), - [anon_sym_L_DQUOTE] = ACTIONS(1281), - [anon_sym_u_DQUOTE] = ACTIONS(1281), - [anon_sym_U_DQUOTE] = ACTIONS(1281), - [anon_sym_u8_DQUOTE] = ACTIONS(1281), - [anon_sym_DQUOTE] = ACTIONS(1281), - [sym_true] = ACTIONS(1279), - [sym_false] = ACTIONS(1279), - [anon_sym_NULL] = ACTIONS(1279), - [anon_sym_nullptr] = ACTIONS(1279), - [sym_comment] = ACTIONS(3), - }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(1293), - [sym_identifier] = ACTIONS(1291), - [aux_sym_preproc_include_token1] = ACTIONS(1291), - [aux_sym_preproc_def_token1] = ACTIONS(1291), - [aux_sym_preproc_if_token1] = ACTIONS(1291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1291), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1291), - [sym_preproc_directive] = ACTIONS(1291), - [anon_sym_LPAREN2] = ACTIONS(1293), - [anon_sym_BANG] = ACTIONS(1293), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1291), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_AMP] = ACTIONS(1293), - [anon_sym___extension__] = ACTIONS(1291), - [anon_sym_typedef] = ACTIONS(1291), - [anon_sym_extern] = ACTIONS(1291), - [anon_sym___attribute__] = ACTIONS(1291), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1293), - [anon_sym___declspec] = ACTIONS(1291), - [anon_sym___cdecl] = ACTIONS(1291), - [anon_sym___clrcall] = ACTIONS(1291), - [anon_sym___stdcall] = ACTIONS(1291), - [anon_sym___fastcall] = ACTIONS(1291), - [anon_sym___thiscall] = ACTIONS(1291), - [anon_sym___vectorcall] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_signed] = ACTIONS(1291), - [anon_sym_unsigned] = ACTIONS(1291), - [anon_sym_long] = ACTIONS(1291), - [anon_sym_short] = ACTIONS(1291), - [anon_sym_static] = ACTIONS(1291), - [anon_sym_auto] = ACTIONS(1291), - [anon_sym_register] = ACTIONS(1291), - [anon_sym_inline] = ACTIONS(1291), - [anon_sym___inline] = ACTIONS(1291), - [anon_sym___inline__] = ACTIONS(1291), - [anon_sym___forceinline] = ACTIONS(1291), - [anon_sym_thread_local] = ACTIONS(1291), - [anon_sym___thread] = ACTIONS(1291), - [anon_sym_const] = ACTIONS(1291), - [anon_sym_constexpr] = ACTIONS(1291), - [anon_sym_volatile] = ACTIONS(1291), - [anon_sym_restrict] = ACTIONS(1291), - [anon_sym___restrict__] = ACTIONS(1291), - [anon_sym__Atomic] = ACTIONS(1291), - [anon_sym__Noreturn] = ACTIONS(1291), - [anon_sym_noreturn] = ACTIONS(1291), - [anon_sym_alignas] = ACTIONS(1291), - [anon_sym__Alignas] = ACTIONS(1291), - [sym_primitive_type] = ACTIONS(1291), - [anon_sym_enum] = ACTIONS(1291), - [anon_sym_struct] = ACTIONS(1291), - [anon_sym_union] = ACTIONS(1291), - [anon_sym_if] = ACTIONS(1291), - [anon_sym_switch] = ACTIONS(1291), - [anon_sym_case] = ACTIONS(1291), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_while] = ACTIONS(1291), - [anon_sym_do] = ACTIONS(1291), - [anon_sym_for] = ACTIONS(1291), - [anon_sym_return] = ACTIONS(1291), - [anon_sym_break] = ACTIONS(1291), - [anon_sym_continue] = ACTIONS(1291), - [anon_sym_goto] = ACTIONS(1291), - [anon_sym_DASH_DASH] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1293), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym___alignof__] = ACTIONS(1291), - [anon_sym___alignof] = ACTIONS(1291), - [anon_sym__alignof] = ACTIONS(1291), - [anon_sym_alignof] = ACTIONS(1291), - [anon_sym__Alignof] = ACTIONS(1291), - [anon_sym_offsetof] = ACTIONS(1291), - [anon_sym__Generic] = ACTIONS(1291), - [anon_sym_asm] = ACTIONS(1291), - [anon_sym___asm__] = ACTIONS(1291), - [sym_number_literal] = ACTIONS(1293), - [anon_sym_L_SQUOTE] = ACTIONS(1293), - [anon_sym_u_SQUOTE] = ACTIONS(1293), - [anon_sym_U_SQUOTE] = ACTIONS(1293), - [anon_sym_u8_SQUOTE] = ACTIONS(1293), - [anon_sym_SQUOTE] = ACTIONS(1293), - [anon_sym_L_DQUOTE] = ACTIONS(1293), - [anon_sym_u_DQUOTE] = ACTIONS(1293), - [anon_sym_U_DQUOTE] = ACTIONS(1293), - [anon_sym_u8_DQUOTE] = ACTIONS(1293), - [anon_sym_DQUOTE] = ACTIONS(1293), - [sym_true] = ACTIONS(1291), - [sym_false] = ACTIONS(1291), - [anon_sym_NULL] = ACTIONS(1291), - [anon_sym_nullptr] = ACTIONS(1291), + [349] = { + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_statement] = STATE(83), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1572), + [anon_sym_switch] = ACTIONS(1575), + [anon_sym_case] = ACTIONS(1578), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_do] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_goto] = ACTIONS(1602), + [anon_sym___try] = ACTIONS(1605), + [anon_sym___leave] = ACTIONS(1608), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1465), + [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(1471), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym___asm__] = ACTIONS(1477), + [sym_number_literal] = ACTIONS(1480), + [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(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1317), - [sym_identifier] = ACTIONS(1315), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), - [sym_preproc_directive] = ACTIONS(1315), - [anon_sym_LPAREN2] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_TILDE] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym___extension__] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1315), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym___attribute__] = ACTIONS(1315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1315), - [anon_sym___cdecl] = ACTIONS(1315), - [anon_sym___clrcall] = ACTIONS(1315), - [anon_sym___stdcall] = ACTIONS(1315), - [anon_sym___fastcall] = ACTIONS(1315), - [anon_sym___thiscall] = ACTIONS(1315), - [anon_sym___vectorcall] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1315), - [anon_sym_unsigned] = ACTIONS(1315), - [anon_sym_long] = ACTIONS(1315), - [anon_sym_short] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_auto] = ACTIONS(1315), - [anon_sym_register] = ACTIONS(1315), - [anon_sym_inline] = ACTIONS(1315), - [anon_sym___inline] = ACTIONS(1315), - [anon_sym___inline__] = ACTIONS(1315), - [anon_sym___forceinline] = ACTIONS(1315), - [anon_sym_thread_local] = ACTIONS(1315), - [anon_sym___thread] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_constexpr] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym___restrict__] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [anon_sym__Noreturn] = ACTIONS(1315), - [anon_sym_noreturn] = ACTIONS(1315), - [anon_sym_alignas] = ACTIONS(1315), - [anon_sym__Alignas] = ACTIONS(1315), - [sym_primitive_type] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_switch] = ACTIONS(1315), - [anon_sym_case] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_do] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_goto] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1317), - [anon_sym_PLUS_PLUS] = ACTIONS(1317), - [anon_sym_sizeof] = ACTIONS(1315), - [anon_sym___alignof__] = ACTIONS(1315), - [anon_sym___alignof] = ACTIONS(1315), - [anon_sym__alignof] = ACTIONS(1315), - [anon_sym_alignof] = ACTIONS(1315), - [anon_sym__Alignof] = ACTIONS(1315), - [anon_sym_offsetof] = ACTIONS(1315), - [anon_sym__Generic] = ACTIONS(1315), - [anon_sym_asm] = ACTIONS(1315), - [anon_sym___asm__] = ACTIONS(1315), - [sym_number_literal] = ACTIONS(1317), - [anon_sym_L_SQUOTE] = ACTIONS(1317), - [anon_sym_u_SQUOTE] = ACTIONS(1317), - [anon_sym_U_SQUOTE] = ACTIONS(1317), - [anon_sym_u8_SQUOTE] = ACTIONS(1317), - [anon_sym_SQUOTE] = ACTIONS(1317), - [anon_sym_L_DQUOTE] = ACTIONS(1317), - [anon_sym_u_DQUOTE] = ACTIONS(1317), - [anon_sym_U_DQUOTE] = ACTIONS(1317), - [anon_sym_u8_DQUOTE] = ACTIONS(1317), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym_true] = ACTIONS(1315), - [sym_false] = ACTIONS(1315), - [anon_sym_NULL] = ACTIONS(1315), - [anon_sym_nullptr] = ACTIONS(1315), + [350] = { + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1299), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), + [sym_preproc_directive] = ACTIONS(1299), + [anon_sym_LPAREN2] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1299), + [anon_sym_extern] = ACTIONS(1299), + [anon_sym___attribute__] = ACTIONS(1299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1299), + [anon_sym___cdecl] = ACTIONS(1299), + [anon_sym___clrcall] = ACTIONS(1299), + [anon_sym___stdcall] = ACTIONS(1299), + [anon_sym___fastcall] = ACTIONS(1299), + [anon_sym___thiscall] = ACTIONS(1299), + [anon_sym___vectorcall] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1299), + [anon_sym_unsigned] = ACTIONS(1299), + [anon_sym_long] = ACTIONS(1299), + [anon_sym_short] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_auto] = ACTIONS(1299), + [anon_sym_register] = ACTIONS(1299), + [anon_sym_inline] = ACTIONS(1299), + [anon_sym___inline] = ACTIONS(1299), + [anon_sym___inline__] = ACTIONS(1299), + [anon_sym___forceinline] = ACTIONS(1299), + [anon_sym_thread_local] = ACTIONS(1299), + [anon_sym___thread] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_constexpr] = ACTIONS(1299), + [anon_sym_volatile] = ACTIONS(1299), + [anon_sym_restrict] = ACTIONS(1299), + [anon_sym___restrict__] = ACTIONS(1299), + [anon_sym__Atomic] = ACTIONS(1299), + [anon_sym__Noreturn] = ACTIONS(1299), + [anon_sym_noreturn] = ACTIONS(1299), + [anon_sym__Nonnull] = ACTIONS(1299), + [anon_sym_alignas] = ACTIONS(1299), + [anon_sym__Alignas] = ACTIONS(1299), + [sym_primitive_type] = ACTIONS(1299), + [anon_sym_enum] = ACTIONS(1299), + [anon_sym_struct] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_if] = ACTIONS(1299), + [anon_sym_switch] = ACTIONS(1299), + [anon_sym_case] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1299), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_break] = ACTIONS(1299), + [anon_sym_continue] = ACTIONS(1299), + [anon_sym_goto] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1299), + [anon_sym___alignof__] = ACTIONS(1299), + [anon_sym___alignof] = ACTIONS(1299), + [anon_sym__alignof] = ACTIONS(1299), + [anon_sym_alignof] = ACTIONS(1299), + [anon_sym__Alignof] = ACTIONS(1299), + [anon_sym_offsetof] = ACTIONS(1299), + [anon_sym__Generic] = ACTIONS(1299), + [anon_sym_asm] = ACTIONS(1299), + [anon_sym___asm__] = ACTIONS(1299), + [sym_number_literal] = ACTIONS(1301), + [anon_sym_L_SQUOTE] = ACTIONS(1301), + [anon_sym_u_SQUOTE] = ACTIONS(1301), + [anon_sym_U_SQUOTE] = ACTIONS(1301), + [anon_sym_u8_SQUOTE] = ACTIONS(1301), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_L_DQUOTE] = ACTIONS(1301), + [anon_sym_u_DQUOTE] = ACTIONS(1301), + [anon_sym_U_DQUOTE] = ACTIONS(1301), + [anon_sym_u8_DQUOTE] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(1301), + [sym_true] = ACTIONS(1299), + [sym_false] = ACTIONS(1299), + [anon_sym_NULL] = ACTIONS(1299), + [anon_sym_nullptr] = ACTIONS(1299), [sym_comment] = ACTIONS(3), }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1321), - [sym_identifier] = ACTIONS(1319), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), - [sym_preproc_directive] = ACTIONS(1319), - [anon_sym_LPAREN2] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym___extension__] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1319), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym___attribute__] = ACTIONS(1319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1319), - [anon_sym___cdecl] = ACTIONS(1319), - [anon_sym___clrcall] = ACTIONS(1319), - [anon_sym___stdcall] = ACTIONS(1319), - [anon_sym___fastcall] = ACTIONS(1319), - [anon_sym___thiscall] = ACTIONS(1319), - [anon_sym___vectorcall] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1319), - [anon_sym_unsigned] = ACTIONS(1319), - [anon_sym_long] = ACTIONS(1319), - [anon_sym_short] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_auto] = ACTIONS(1319), - [anon_sym_register] = ACTIONS(1319), - [anon_sym_inline] = ACTIONS(1319), - [anon_sym___inline] = ACTIONS(1319), - [anon_sym___inline__] = ACTIONS(1319), - [anon_sym___forceinline] = ACTIONS(1319), - [anon_sym_thread_local] = ACTIONS(1319), - [anon_sym___thread] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_constexpr] = ACTIONS(1319), - [anon_sym_volatile] = ACTIONS(1319), - [anon_sym_restrict] = ACTIONS(1319), - [anon_sym___restrict__] = ACTIONS(1319), - [anon_sym__Atomic] = ACTIONS(1319), - [anon_sym__Noreturn] = ACTIONS(1319), - [anon_sym_noreturn] = ACTIONS(1319), - [anon_sym_alignas] = ACTIONS(1319), - [anon_sym__Alignas] = ACTIONS(1319), - [sym_primitive_type] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_switch] = ACTIONS(1319), - [anon_sym_case] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_do] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_goto] = ACTIONS(1319), - [anon_sym_DASH_DASH] = ACTIONS(1321), - [anon_sym_PLUS_PLUS] = ACTIONS(1321), - [anon_sym_sizeof] = ACTIONS(1319), - [anon_sym___alignof__] = ACTIONS(1319), - [anon_sym___alignof] = ACTIONS(1319), - [anon_sym__alignof] = ACTIONS(1319), - [anon_sym_alignof] = ACTIONS(1319), - [anon_sym__Alignof] = ACTIONS(1319), - [anon_sym_offsetof] = ACTIONS(1319), - [anon_sym__Generic] = ACTIONS(1319), - [anon_sym_asm] = ACTIONS(1319), - [anon_sym___asm__] = ACTIONS(1319), - [sym_number_literal] = ACTIONS(1321), - [anon_sym_L_SQUOTE] = ACTIONS(1321), - [anon_sym_u_SQUOTE] = ACTIONS(1321), - [anon_sym_U_SQUOTE] = ACTIONS(1321), - [anon_sym_u8_SQUOTE] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_L_DQUOTE] = ACTIONS(1321), - [anon_sym_u_DQUOTE] = ACTIONS(1321), - [anon_sym_U_DQUOTE] = ACTIONS(1321), - [anon_sym_u8_DQUOTE] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [sym_true] = ACTIONS(1319), - [sym_false] = ACTIONS(1319), - [anon_sym_NULL] = ACTIONS(1319), - [anon_sym_nullptr] = ACTIONS(1319), + [351] = { + [sym_attribute_declaration] = STATE(374), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_statement] = STATE(103), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(1561), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1397), + [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), }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1251), - [aux_sym_preproc_include_token1] = ACTIONS(1251), - [aux_sym_preproc_def_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [sym_preproc_directive] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym___extension__] = ACTIONS(1251), - [anon_sym_typedef] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym___attribute__] = ACTIONS(1251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1253), - [anon_sym___declspec] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_signed] = ACTIONS(1251), - [anon_sym_unsigned] = ACTIONS(1251), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_short] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_auto] = ACTIONS(1251), - [anon_sym_register] = ACTIONS(1251), - [anon_sym_inline] = ACTIONS(1251), - [anon_sym___inline] = ACTIONS(1251), - [anon_sym___inline__] = ACTIONS(1251), - [anon_sym___forceinline] = ACTIONS(1251), - [anon_sym_thread_local] = ACTIONS(1251), - [anon_sym___thread] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_constexpr] = ACTIONS(1251), - [anon_sym_volatile] = ACTIONS(1251), - [anon_sym_restrict] = ACTIONS(1251), - [anon_sym___restrict__] = ACTIONS(1251), - [anon_sym__Atomic] = ACTIONS(1251), - [anon_sym__Noreturn] = ACTIONS(1251), - [anon_sym_noreturn] = ACTIONS(1251), - [anon_sym_alignas] = ACTIONS(1251), - [anon_sym__Alignas] = ACTIONS(1251), - [sym_primitive_type] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_goto] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1251), - [anon_sym___alignof__] = ACTIONS(1251), - [anon_sym___alignof] = ACTIONS(1251), - [anon_sym__alignof] = ACTIONS(1251), - [anon_sym_alignof] = ACTIONS(1251), - [anon_sym__Alignof] = ACTIONS(1251), - [anon_sym_offsetof] = ACTIONS(1251), - [anon_sym__Generic] = ACTIONS(1251), - [anon_sym_asm] = ACTIONS(1251), - [anon_sym___asm__] = ACTIONS(1251), - [sym_number_literal] = ACTIONS(1253), - [anon_sym_L_SQUOTE] = ACTIONS(1253), - [anon_sym_u_SQUOTE] = ACTIONS(1253), - [anon_sym_U_SQUOTE] = ACTIONS(1253), - [anon_sym_u8_SQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_L_DQUOTE] = ACTIONS(1253), - [anon_sym_u_DQUOTE] = ACTIONS(1253), - [anon_sym_U_DQUOTE] = ACTIONS(1253), - [anon_sym_u8_DQUOTE] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_true] = ACTIONS(1251), - [sym_false] = ACTIONS(1251), - [anon_sym_NULL] = ACTIONS(1251), - [anon_sym_nullptr] = ACTIONS(1251), + [352] = { + [sym_attribute_declaration] = STATE(374), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_statement] = STATE(105), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(1561), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1397), + [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), }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1295), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1295), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1295), - [sym_preproc_directive] = ACTIONS(1295), - [anon_sym_LPAREN2] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_TILDE] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym___extension__] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1295), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym___attribute__] = ACTIONS(1295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1295), - [anon_sym___cdecl] = ACTIONS(1295), - [anon_sym___clrcall] = ACTIONS(1295), - [anon_sym___stdcall] = ACTIONS(1295), - [anon_sym___fastcall] = ACTIONS(1295), - [anon_sym___thiscall] = ACTIONS(1295), - [anon_sym___vectorcall] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1295), - [anon_sym_unsigned] = ACTIONS(1295), - [anon_sym_long] = ACTIONS(1295), - [anon_sym_short] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_auto] = ACTIONS(1295), - [anon_sym_register] = ACTIONS(1295), - [anon_sym_inline] = ACTIONS(1295), - [anon_sym___inline] = ACTIONS(1295), - [anon_sym___inline__] = ACTIONS(1295), - [anon_sym___forceinline] = ACTIONS(1295), - [anon_sym_thread_local] = ACTIONS(1295), - [anon_sym___thread] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_constexpr] = ACTIONS(1295), - [anon_sym_volatile] = ACTIONS(1295), - [anon_sym_restrict] = ACTIONS(1295), - [anon_sym___restrict__] = ACTIONS(1295), - [anon_sym__Atomic] = ACTIONS(1295), - [anon_sym__Noreturn] = ACTIONS(1295), - [anon_sym_noreturn] = ACTIONS(1295), - [anon_sym_alignas] = ACTIONS(1295), - [anon_sym__Alignas] = ACTIONS(1295), - [sym_primitive_type] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_switch] = ACTIONS(1295), - [anon_sym_case] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_do] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_goto] = ACTIONS(1295), - [anon_sym_DASH_DASH] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1295), - [anon_sym___alignof__] = ACTIONS(1295), - [anon_sym___alignof] = ACTIONS(1295), - [anon_sym__alignof] = ACTIONS(1295), - [anon_sym_alignof] = ACTIONS(1295), - [anon_sym__Alignof] = ACTIONS(1295), - [anon_sym_offsetof] = ACTIONS(1295), - [anon_sym__Generic] = ACTIONS(1295), - [anon_sym_asm] = ACTIONS(1295), - [anon_sym___asm__] = ACTIONS(1295), - [sym_number_literal] = ACTIONS(1297), - [anon_sym_L_SQUOTE] = ACTIONS(1297), - [anon_sym_u_SQUOTE] = ACTIONS(1297), - [anon_sym_U_SQUOTE] = ACTIONS(1297), - [anon_sym_u8_SQUOTE] = ACTIONS(1297), - [anon_sym_SQUOTE] = ACTIONS(1297), - [anon_sym_L_DQUOTE] = ACTIONS(1297), - [anon_sym_u_DQUOTE] = ACTIONS(1297), - [anon_sym_U_DQUOTE] = ACTIONS(1297), - [anon_sym_u8_DQUOTE] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(1297), - [sym_true] = ACTIONS(1295), - [sym_false] = ACTIONS(1295), - [anon_sym_NULL] = ACTIONS(1295), - [anon_sym_nullptr] = ACTIONS(1295), + [353] = { + [sym_attribute_declaration] = STATE(363), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(398), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [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), + }, + [354] = { + [sym_attribute_declaration] = STATE(363), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(159), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [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), }, - [360] = { + [355] = { + [sym_attribute_declaration] = STATE(363), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(170), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [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), + }, + [356] = { + [sym_attribute_declaration] = STATE(356), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(206), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(356), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1614), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1617), + [anon_sym_default] = ACTIONS(1620), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1453), + [anon_sym___try] = ACTIONS(1629), + [anon_sym___leave] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1465), + [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(1471), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym___asm__] = ACTIONS(1477), + [sym_number_literal] = ACTIONS(1480), + [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(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), + [sym_comment] = ACTIONS(3), + }, + [357] = { [ts_builtin_sym_end] = ACTIONS(1313), [sym_identifier] = ACTIONS(1311), [aux_sym_preproc_include_token1] = ACTIONS(1311), @@ -52299,6 +52350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1311), [anon_sym__Noreturn] = ACTIONS(1311), [anon_sym_noreturn] = ACTIONS(1311), + [anon_sym__Nonnull] = ACTIONS(1311), [anon_sym_alignas] = ACTIONS(1311), [anon_sym__Alignas] = ACTIONS(1311), [sym_primitive_type] = ACTIONS(1311), @@ -52312,2011 +52364,2322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1311), [anon_sym_do] = ACTIONS(1311), [anon_sym_for] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1313), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_sizeof] = ACTIONS(1311), - [anon_sym___alignof__] = ACTIONS(1311), - [anon_sym___alignof] = ACTIONS(1311), - [anon_sym__alignof] = ACTIONS(1311), - [anon_sym_alignof] = ACTIONS(1311), - [anon_sym__Alignof] = ACTIONS(1311), - [anon_sym_offsetof] = ACTIONS(1311), - [anon_sym__Generic] = ACTIONS(1311), - [anon_sym_asm] = ACTIONS(1311), - [anon_sym___asm__] = ACTIONS(1311), - [sym_number_literal] = ACTIONS(1313), - [anon_sym_L_SQUOTE] = ACTIONS(1313), - [anon_sym_u_SQUOTE] = ACTIONS(1313), - [anon_sym_U_SQUOTE] = ACTIONS(1313), - [anon_sym_u8_SQUOTE] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1313), - [anon_sym_L_DQUOTE] = ACTIONS(1313), - [anon_sym_u_DQUOTE] = ACTIONS(1313), - [anon_sym_U_DQUOTE] = ACTIONS(1313), - [anon_sym_u8_DQUOTE] = ACTIONS(1313), - [anon_sym_DQUOTE] = ACTIONS(1313), - [sym_true] = ACTIONS(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), - [sym_comment] = ACTIONS(3), - }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(1329), - [sym_identifier] = ACTIONS(1327), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), - [sym_preproc_directive] = ACTIONS(1327), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym___extension__] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym___attribute__] = ACTIONS(1327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1327), - [anon_sym___cdecl] = ACTIONS(1327), - [anon_sym___clrcall] = ACTIONS(1327), - [anon_sym___stdcall] = ACTIONS(1327), - [anon_sym___fastcall] = ACTIONS(1327), - [anon_sym___thiscall] = ACTIONS(1327), - [anon_sym___vectorcall] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1327), - [anon_sym_unsigned] = ACTIONS(1327), - [anon_sym_long] = ACTIONS(1327), - [anon_sym_short] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_auto] = ACTIONS(1327), - [anon_sym_register] = ACTIONS(1327), - [anon_sym_inline] = ACTIONS(1327), - [anon_sym___inline] = ACTIONS(1327), - [anon_sym___inline__] = ACTIONS(1327), - [anon_sym___forceinline] = ACTIONS(1327), - [anon_sym_thread_local] = ACTIONS(1327), - [anon_sym___thread] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_constexpr] = ACTIONS(1327), - [anon_sym_volatile] = ACTIONS(1327), - [anon_sym_restrict] = ACTIONS(1327), - [anon_sym___restrict__] = ACTIONS(1327), - [anon_sym__Atomic] = ACTIONS(1327), - [anon_sym__Noreturn] = ACTIONS(1327), - [anon_sym_noreturn] = ACTIONS(1327), - [anon_sym_alignas] = ACTIONS(1327), - [anon_sym__Alignas] = ACTIONS(1327), - [sym_primitive_type] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_switch] = ACTIONS(1327), - [anon_sym_case] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_do] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_goto] = ACTIONS(1327), - [anon_sym_DASH_DASH] = ACTIONS(1329), - [anon_sym_PLUS_PLUS] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(1327), - [anon_sym___alignof__] = ACTIONS(1327), - [anon_sym___alignof] = ACTIONS(1327), - [anon_sym__alignof] = ACTIONS(1327), - [anon_sym_alignof] = ACTIONS(1327), - [anon_sym__Alignof] = ACTIONS(1327), - [anon_sym_offsetof] = ACTIONS(1327), - [anon_sym__Generic] = ACTIONS(1327), - [anon_sym_asm] = ACTIONS(1327), - [anon_sym___asm__] = ACTIONS(1327), - [sym_number_literal] = ACTIONS(1329), - [anon_sym_L_SQUOTE] = ACTIONS(1329), - [anon_sym_u_SQUOTE] = ACTIONS(1329), - [anon_sym_U_SQUOTE] = ACTIONS(1329), - [anon_sym_u8_SQUOTE] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_L_DQUOTE] = ACTIONS(1329), - [anon_sym_u_DQUOTE] = ACTIONS(1329), - [anon_sym_U_DQUOTE] = ACTIONS(1329), - [anon_sym_u8_DQUOTE] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym_true] = ACTIONS(1327), - [sym_false] = ACTIONS(1327), - [anon_sym_NULL] = ACTIONS(1327), - [anon_sym_nullptr] = ACTIONS(1327), - [sym_comment] = ACTIONS(3), - }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1305), - [sym_identifier] = ACTIONS(1303), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1303), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1303), - [sym_preproc_directive] = ACTIONS(1303), - [anon_sym_LPAREN2] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_TILDE] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym___extension__] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym___attribute__] = ACTIONS(1303), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1303), - [anon_sym___cdecl] = ACTIONS(1303), - [anon_sym___clrcall] = ACTIONS(1303), - [anon_sym___stdcall] = ACTIONS(1303), - [anon_sym___fastcall] = ACTIONS(1303), - [anon_sym___thiscall] = ACTIONS(1303), - [anon_sym___vectorcall] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1303), - [anon_sym_unsigned] = ACTIONS(1303), - [anon_sym_long] = ACTIONS(1303), - [anon_sym_short] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_auto] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_inline] = ACTIONS(1303), - [anon_sym___inline] = ACTIONS(1303), - [anon_sym___inline__] = ACTIONS(1303), - [anon_sym___forceinline] = ACTIONS(1303), - [anon_sym_thread_local] = ACTIONS(1303), - [anon_sym___thread] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_constexpr] = ACTIONS(1303), - [anon_sym_volatile] = ACTIONS(1303), - [anon_sym_restrict] = ACTIONS(1303), - [anon_sym___restrict__] = ACTIONS(1303), - [anon_sym__Atomic] = ACTIONS(1303), - [anon_sym__Noreturn] = ACTIONS(1303), - [anon_sym_noreturn] = ACTIONS(1303), - [anon_sym_alignas] = ACTIONS(1303), - [anon_sym__Alignas] = ACTIONS(1303), - [sym_primitive_type] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_switch] = ACTIONS(1303), - [anon_sym_case] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_goto] = ACTIONS(1303), - [anon_sym_DASH_DASH] = ACTIONS(1305), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_sizeof] = ACTIONS(1303), - [anon_sym___alignof__] = ACTIONS(1303), - [anon_sym___alignof] = ACTIONS(1303), - [anon_sym__alignof] = ACTIONS(1303), - [anon_sym_alignof] = ACTIONS(1303), - [anon_sym__Alignof] = ACTIONS(1303), - [anon_sym_offsetof] = ACTIONS(1303), - [anon_sym__Generic] = ACTIONS(1303), - [anon_sym_asm] = ACTIONS(1303), - [anon_sym___asm__] = ACTIONS(1303), - [sym_number_literal] = ACTIONS(1305), - [anon_sym_L_SQUOTE] = ACTIONS(1305), - [anon_sym_u_SQUOTE] = ACTIONS(1305), - [anon_sym_U_SQUOTE] = ACTIONS(1305), - [anon_sym_u8_SQUOTE] = ACTIONS(1305), - [anon_sym_SQUOTE] = ACTIONS(1305), - [anon_sym_L_DQUOTE] = ACTIONS(1305), - [anon_sym_u_DQUOTE] = ACTIONS(1305), - [anon_sym_U_DQUOTE] = ACTIONS(1305), - [anon_sym_u8_DQUOTE] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [sym_true] = ACTIONS(1303), - [sym_false] = ACTIONS(1303), - [anon_sym_NULL] = ACTIONS(1303), - [anon_sym_nullptr] = ACTIONS(1303), - [sym_comment] = ACTIONS(3), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1307), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1307), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1307), - [sym_preproc_directive] = ACTIONS(1307), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym___extension__] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym___attribute__] = ACTIONS(1307), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1307), - [anon_sym___cdecl] = ACTIONS(1307), - [anon_sym___clrcall] = ACTIONS(1307), - [anon_sym___stdcall] = ACTIONS(1307), - [anon_sym___fastcall] = ACTIONS(1307), - [anon_sym___thiscall] = ACTIONS(1307), - [anon_sym___vectorcall] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1307), - [anon_sym_unsigned] = ACTIONS(1307), - [anon_sym_long] = ACTIONS(1307), - [anon_sym_short] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_auto] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_inline] = ACTIONS(1307), - [anon_sym___inline] = ACTIONS(1307), - [anon_sym___inline__] = ACTIONS(1307), - [anon_sym___forceinline] = ACTIONS(1307), - [anon_sym_thread_local] = ACTIONS(1307), - [anon_sym___thread] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_constexpr] = ACTIONS(1307), - [anon_sym_volatile] = ACTIONS(1307), - [anon_sym_restrict] = ACTIONS(1307), - [anon_sym___restrict__] = ACTIONS(1307), - [anon_sym__Atomic] = ACTIONS(1307), - [anon_sym__Noreturn] = ACTIONS(1307), - [anon_sym_noreturn] = ACTIONS(1307), - [anon_sym_alignas] = ACTIONS(1307), - [anon_sym__Alignas] = ACTIONS(1307), - [sym_primitive_type] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_switch] = ACTIONS(1307), - [anon_sym_case] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_goto] = ACTIONS(1307), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_sizeof] = ACTIONS(1307), - [anon_sym___alignof__] = ACTIONS(1307), - [anon_sym___alignof] = ACTIONS(1307), - [anon_sym__alignof] = ACTIONS(1307), - [anon_sym_alignof] = ACTIONS(1307), - [anon_sym__Alignof] = ACTIONS(1307), - [anon_sym_offsetof] = ACTIONS(1307), - [anon_sym__Generic] = ACTIONS(1307), - [anon_sym_asm] = ACTIONS(1307), - [anon_sym___asm__] = ACTIONS(1307), - [sym_number_literal] = ACTIONS(1309), - [anon_sym_L_SQUOTE] = ACTIONS(1309), - [anon_sym_u_SQUOTE] = ACTIONS(1309), - [anon_sym_U_SQUOTE] = ACTIONS(1309), - [anon_sym_u8_SQUOTE] = ACTIONS(1309), - [anon_sym_SQUOTE] = ACTIONS(1309), - [anon_sym_L_DQUOTE] = ACTIONS(1309), - [anon_sym_u_DQUOTE] = ACTIONS(1309), - [anon_sym_U_DQUOTE] = ACTIONS(1309), - [anon_sym_u8_DQUOTE] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [anon_sym_NULL] = ACTIONS(1307), - [anon_sym_nullptr] = ACTIONS(1307), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1333), - [sym_identifier] = ACTIONS(1331), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), - [sym_preproc_directive] = ACTIONS(1331), - [anon_sym_LPAREN2] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym___extension__] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1331), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym___attribute__] = ACTIONS(1331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1331), - [anon_sym___cdecl] = ACTIONS(1331), - [anon_sym___clrcall] = ACTIONS(1331), - [anon_sym___stdcall] = ACTIONS(1331), - [anon_sym___fastcall] = ACTIONS(1331), - [anon_sym___thiscall] = ACTIONS(1331), - [anon_sym___vectorcall] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1331), - [anon_sym_unsigned] = ACTIONS(1331), - [anon_sym_long] = ACTIONS(1331), - [anon_sym_short] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_auto] = ACTIONS(1331), - [anon_sym_register] = ACTIONS(1331), - [anon_sym_inline] = ACTIONS(1331), - [anon_sym___inline] = ACTIONS(1331), - [anon_sym___inline__] = ACTIONS(1331), - [anon_sym___forceinline] = ACTIONS(1331), - [anon_sym_thread_local] = ACTIONS(1331), - [anon_sym___thread] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_constexpr] = ACTIONS(1331), - [anon_sym_volatile] = ACTIONS(1331), - [anon_sym_restrict] = ACTIONS(1331), - [anon_sym___restrict__] = ACTIONS(1331), - [anon_sym__Atomic] = ACTIONS(1331), - [anon_sym__Noreturn] = ACTIONS(1331), - [anon_sym_noreturn] = ACTIONS(1331), - [anon_sym_alignas] = ACTIONS(1331), - [anon_sym__Alignas] = ACTIONS(1331), - [sym_primitive_type] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_switch] = ACTIONS(1331), - [anon_sym_case] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_do] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_goto] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1331), - [anon_sym___alignof__] = ACTIONS(1331), - [anon_sym___alignof] = ACTIONS(1331), - [anon_sym__alignof] = ACTIONS(1331), - [anon_sym_alignof] = ACTIONS(1331), - [anon_sym__Alignof] = ACTIONS(1331), - [anon_sym_offsetof] = ACTIONS(1331), - [anon_sym__Generic] = ACTIONS(1331), - [anon_sym_asm] = ACTIONS(1331), - [anon_sym___asm__] = ACTIONS(1331), - [sym_number_literal] = ACTIONS(1333), - [anon_sym_L_SQUOTE] = ACTIONS(1333), - [anon_sym_u_SQUOTE] = ACTIONS(1333), - [anon_sym_U_SQUOTE] = ACTIONS(1333), - [anon_sym_u8_SQUOTE] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_L_DQUOTE] = ACTIONS(1333), - [anon_sym_u_DQUOTE] = ACTIONS(1333), - [anon_sym_U_DQUOTE] = ACTIONS(1333), - [anon_sym_u8_DQUOTE] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [sym_true] = ACTIONS(1331), - [sym_false] = ACTIONS(1331), - [anon_sym_NULL] = ACTIONS(1331), - [anon_sym_nullptr] = ACTIONS(1331), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_sizeof] = ACTIONS(1311), + [anon_sym___alignof__] = ACTIONS(1311), + [anon_sym___alignof] = ACTIONS(1311), + [anon_sym__alignof] = ACTIONS(1311), + [anon_sym_alignof] = ACTIONS(1311), + [anon_sym__Alignof] = ACTIONS(1311), + [anon_sym_offsetof] = ACTIONS(1311), + [anon_sym__Generic] = ACTIONS(1311), + [anon_sym_asm] = ACTIONS(1311), + [anon_sym___asm__] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1313), + [anon_sym_L_SQUOTE] = ACTIONS(1313), + [anon_sym_u_SQUOTE] = ACTIONS(1313), + [anon_sym_U_SQUOTE] = ACTIONS(1313), + [anon_sym_u8_SQUOTE] = ACTIONS(1313), + [anon_sym_SQUOTE] = ACTIONS(1313), + [anon_sym_L_DQUOTE] = ACTIONS(1313), + [anon_sym_u_DQUOTE] = ACTIONS(1313), + [anon_sym_U_DQUOTE] = ACTIONS(1313), + [anon_sym_u8_DQUOTE] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(1313), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [anon_sym_NULL] = ACTIONS(1311), + [anon_sym_nullptr] = ACTIONS(1311), [sym_comment] = ACTIONS(3), }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1323), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), - [sym_preproc_directive] = ACTIONS(1323), - [anon_sym_LPAREN2] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym___extension__] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1323), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym___attribute__] = ACTIONS(1323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1323), - [anon_sym___cdecl] = ACTIONS(1323), - [anon_sym___clrcall] = ACTIONS(1323), - [anon_sym___stdcall] = ACTIONS(1323), - [anon_sym___fastcall] = ACTIONS(1323), - [anon_sym___thiscall] = ACTIONS(1323), - [anon_sym___vectorcall] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1323), - [anon_sym_unsigned] = ACTIONS(1323), - [anon_sym_long] = ACTIONS(1323), - [anon_sym_short] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_auto] = ACTIONS(1323), - [anon_sym_register] = ACTIONS(1323), - [anon_sym_inline] = ACTIONS(1323), - [anon_sym___inline] = ACTIONS(1323), - [anon_sym___inline__] = ACTIONS(1323), - [anon_sym___forceinline] = ACTIONS(1323), - [anon_sym_thread_local] = ACTIONS(1323), - [anon_sym___thread] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_constexpr] = ACTIONS(1323), - [anon_sym_volatile] = ACTIONS(1323), - [anon_sym_restrict] = ACTIONS(1323), - [anon_sym___restrict__] = ACTIONS(1323), - [anon_sym__Atomic] = ACTIONS(1323), - [anon_sym__Noreturn] = ACTIONS(1323), - [anon_sym_noreturn] = ACTIONS(1323), - [anon_sym_alignas] = ACTIONS(1323), - [anon_sym__Alignas] = ACTIONS(1323), - [sym_primitive_type] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_switch] = ACTIONS(1323), - [anon_sym_case] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_do] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_goto] = ACTIONS(1323), - [anon_sym_DASH_DASH] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(1325), - [anon_sym_sizeof] = ACTIONS(1323), - [anon_sym___alignof__] = ACTIONS(1323), - [anon_sym___alignof] = ACTIONS(1323), - [anon_sym__alignof] = ACTIONS(1323), - [anon_sym_alignof] = ACTIONS(1323), - [anon_sym__Alignof] = ACTIONS(1323), - [anon_sym_offsetof] = ACTIONS(1323), - [anon_sym__Generic] = ACTIONS(1323), - [anon_sym_asm] = ACTIONS(1323), - [anon_sym___asm__] = ACTIONS(1323), - [sym_number_literal] = ACTIONS(1325), - [anon_sym_L_SQUOTE] = ACTIONS(1325), - [anon_sym_u_SQUOTE] = ACTIONS(1325), - [anon_sym_U_SQUOTE] = ACTIONS(1325), - [anon_sym_u8_SQUOTE] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_L_DQUOTE] = ACTIONS(1325), - [anon_sym_u_DQUOTE] = ACTIONS(1325), - [anon_sym_U_DQUOTE] = ACTIONS(1325), - [anon_sym_u8_DQUOTE] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [anon_sym_NULL] = ACTIONS(1323), - [anon_sym_nullptr] = ACTIONS(1323), + [358] = { + [sym_attribute_declaration] = STATE(363), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(236), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [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), }, - [366] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [sym_identifier] = ACTIONS(1680), - [aux_sym_preproc_include_token1] = ACTIONS(1680), - [aux_sym_preproc_def_token1] = ACTIONS(1680), - [aux_sym_preproc_if_token1] = ACTIONS(1680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1680), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1680), - [sym_preproc_directive] = ACTIONS(1680), - [anon_sym_LPAREN2] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1678), - [anon_sym___extension__] = ACTIONS(1680), - [anon_sym_typedef] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1680), - [anon_sym___attribute__] = ACTIONS(1680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1678), - [anon_sym___declspec] = ACTIONS(1680), - [anon_sym___cdecl] = ACTIONS(1680), - [anon_sym___clrcall] = ACTIONS(1680), - [anon_sym___stdcall] = ACTIONS(1680), - [anon_sym___fastcall] = ACTIONS(1680), - [anon_sym___thiscall] = ACTIONS(1680), - [anon_sym___vectorcall] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_signed] = ACTIONS(1680), - [anon_sym_unsigned] = ACTIONS(1680), - [anon_sym_long] = ACTIONS(1680), - [anon_sym_short] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1680), - [anon_sym_auto] = ACTIONS(1680), - [anon_sym_register] = ACTIONS(1680), - [anon_sym_inline] = ACTIONS(1680), - [anon_sym___inline] = ACTIONS(1680), - [anon_sym___inline__] = ACTIONS(1680), - [anon_sym___forceinline] = ACTIONS(1680), - [anon_sym_thread_local] = ACTIONS(1680), - [anon_sym___thread] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_constexpr] = ACTIONS(1680), - [anon_sym_volatile] = ACTIONS(1680), - [anon_sym_restrict] = ACTIONS(1680), - [anon_sym___restrict__] = ACTIONS(1680), - [anon_sym__Atomic] = ACTIONS(1680), - [anon_sym__Noreturn] = ACTIONS(1680), - [anon_sym_noreturn] = ACTIONS(1680), - [anon_sym_alignas] = ACTIONS(1680), - [anon_sym__Alignas] = ACTIONS(1680), - [sym_primitive_type] = ACTIONS(1680), - [anon_sym_enum] = ACTIONS(1680), - [anon_sym_struct] = ACTIONS(1680), - [anon_sym_union] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_do] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1680), - [anon_sym_goto] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_sizeof] = ACTIONS(1680), - [anon_sym___alignof__] = ACTIONS(1680), - [anon_sym___alignof] = ACTIONS(1680), - [anon_sym__alignof] = ACTIONS(1680), - [anon_sym_alignof] = ACTIONS(1680), - [anon_sym__Alignof] = ACTIONS(1680), - [anon_sym_offsetof] = ACTIONS(1680), - [anon_sym__Generic] = ACTIONS(1680), - [anon_sym_asm] = ACTIONS(1680), - [anon_sym___asm__] = ACTIONS(1680), - [sym_number_literal] = ACTIONS(1678), - [anon_sym_L_SQUOTE] = ACTIONS(1678), - [anon_sym_u_SQUOTE] = ACTIONS(1678), - [anon_sym_U_SQUOTE] = ACTIONS(1678), - [anon_sym_u8_SQUOTE] = ACTIONS(1678), - [anon_sym_SQUOTE] = ACTIONS(1678), - [anon_sym_L_DQUOTE] = ACTIONS(1678), - [anon_sym_u_DQUOTE] = ACTIONS(1678), - [anon_sym_U_DQUOTE] = ACTIONS(1678), - [anon_sym_u8_DQUOTE] = ACTIONS(1678), - [anon_sym_DQUOTE] = ACTIONS(1678), - [sym_true] = ACTIONS(1680), - [sym_false] = ACTIONS(1680), - [anon_sym_NULL] = ACTIONS(1680), - [anon_sym_nullptr] = ACTIONS(1680), + [359] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(176), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [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), }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1339), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1339), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1339), - [sym_preproc_directive] = ACTIONS(1339), - [anon_sym_LPAREN2] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym___extension__] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym___attribute__] = ACTIONS(1339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1339), - [anon_sym___cdecl] = ACTIONS(1339), - [anon_sym___clrcall] = ACTIONS(1339), - [anon_sym___stdcall] = ACTIONS(1339), - [anon_sym___fastcall] = ACTIONS(1339), - [anon_sym___thiscall] = ACTIONS(1339), - [anon_sym___vectorcall] = ACTIONS(1339), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1339), - [anon_sym_unsigned] = ACTIONS(1339), - [anon_sym_long] = ACTIONS(1339), - [anon_sym_short] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_auto] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_inline] = ACTIONS(1339), - [anon_sym___inline] = ACTIONS(1339), - [anon_sym___inline__] = ACTIONS(1339), - [anon_sym___forceinline] = ACTIONS(1339), - [anon_sym_thread_local] = ACTIONS(1339), - [anon_sym___thread] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_constexpr] = ACTIONS(1339), - [anon_sym_volatile] = ACTIONS(1339), - [anon_sym_restrict] = ACTIONS(1339), - [anon_sym___restrict__] = ACTIONS(1339), - [anon_sym__Atomic] = ACTIONS(1339), - [anon_sym__Noreturn] = ACTIONS(1339), - [anon_sym_noreturn] = ACTIONS(1339), - [anon_sym_alignas] = ACTIONS(1339), - [anon_sym__Alignas] = ACTIONS(1339), - [sym_primitive_type] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_switch] = ACTIONS(1339), - [anon_sym_case] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_goto] = ACTIONS(1339), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1339), - [anon_sym___alignof__] = ACTIONS(1339), - [anon_sym___alignof] = ACTIONS(1339), - [anon_sym__alignof] = ACTIONS(1339), - [anon_sym_alignof] = ACTIONS(1339), - [anon_sym__Alignof] = ACTIONS(1339), - [anon_sym_offsetof] = ACTIONS(1339), - [anon_sym__Generic] = ACTIONS(1339), - [anon_sym_asm] = ACTIONS(1339), - [anon_sym___asm__] = ACTIONS(1339), - [sym_number_literal] = ACTIONS(1341), - [anon_sym_L_SQUOTE] = ACTIONS(1341), - [anon_sym_u_SQUOTE] = ACTIONS(1341), - [anon_sym_U_SQUOTE] = ACTIONS(1341), - [anon_sym_u8_SQUOTE] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_L_DQUOTE] = ACTIONS(1341), - [anon_sym_u_DQUOTE] = ACTIONS(1341), - [anon_sym_U_DQUOTE] = ACTIONS(1341), - [anon_sym_u8_DQUOTE] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(1341), - [sym_true] = ACTIONS(1339), - [sym_false] = ACTIONS(1339), - [anon_sym_NULL] = ACTIONS(1339), - [anon_sym_nullptr] = ACTIONS(1339), + [360] = { + [sym_attribute_declaration] = STATE(363), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(238), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [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), + }, + [361] = { + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym___extension__] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym___attribute__] = ACTIONS(1315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym___inline] = ACTIONS(1315), + [anon_sym___inline__] = ACTIONS(1315), + [anon_sym___forceinline] = ACTIONS(1315), + [anon_sym_thread_local] = ACTIONS(1315), + [anon_sym___thread] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_constexpr] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym___restrict__] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym__Noreturn] = ACTIONS(1315), + [anon_sym_noreturn] = ACTIONS(1315), + [anon_sym__Nonnull] = ACTIONS(1315), + [anon_sym_alignas] = ACTIONS(1315), + [anon_sym__Alignas] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_goto] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_sizeof] = ACTIONS(1315), + [anon_sym___alignof__] = ACTIONS(1315), + [anon_sym___alignof] = ACTIONS(1315), + [anon_sym__alignof] = ACTIONS(1315), + [anon_sym_alignof] = ACTIONS(1315), + [anon_sym__Alignof] = ACTIONS(1315), + [anon_sym_offsetof] = ACTIONS(1315), + [anon_sym__Generic] = ACTIONS(1315), + [anon_sym_asm] = ACTIONS(1315), + [anon_sym___asm__] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1317), + [anon_sym_L_SQUOTE] = ACTIONS(1317), + [anon_sym_u_SQUOTE] = ACTIONS(1317), + [anon_sym_U_SQUOTE] = ACTIONS(1317), + [anon_sym_u8_SQUOTE] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1317), + [anon_sym_L_DQUOTE] = ACTIONS(1317), + [anon_sym_u_DQUOTE] = ACTIONS(1317), + [anon_sym_U_DQUOTE] = ACTIONS(1317), + [anon_sym_u8_DQUOTE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1317), + [sym_true] = ACTIONS(1315), + [sym_false] = ACTIONS(1315), + [anon_sym_NULL] = ACTIONS(1315), + [anon_sym_nullptr] = ACTIONS(1315), + [sym_comment] = ACTIONS(3), + }, + [362] = { + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1319), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1319), + [sym_preproc_directive] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym___extension__] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym___attribute__] = ACTIONS(1319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1319), + [anon_sym___cdecl] = ACTIONS(1319), + [anon_sym___clrcall] = ACTIONS(1319), + [anon_sym___stdcall] = ACTIONS(1319), + [anon_sym___fastcall] = ACTIONS(1319), + [anon_sym___thiscall] = ACTIONS(1319), + [anon_sym___vectorcall] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1319), + [anon_sym_unsigned] = ACTIONS(1319), + [anon_sym_long] = ACTIONS(1319), + [anon_sym_short] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_auto] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_inline] = ACTIONS(1319), + [anon_sym___inline] = ACTIONS(1319), + [anon_sym___inline__] = ACTIONS(1319), + [anon_sym___forceinline] = ACTIONS(1319), + [anon_sym_thread_local] = ACTIONS(1319), + [anon_sym___thread] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_constexpr] = ACTIONS(1319), + [anon_sym_volatile] = ACTIONS(1319), + [anon_sym_restrict] = ACTIONS(1319), + [anon_sym___restrict__] = ACTIONS(1319), + [anon_sym__Atomic] = ACTIONS(1319), + [anon_sym__Noreturn] = ACTIONS(1319), + [anon_sym_noreturn] = ACTIONS(1319), + [anon_sym__Nonnull] = ACTIONS(1319), + [anon_sym_alignas] = ACTIONS(1319), + [anon_sym__Alignas] = ACTIONS(1319), + [sym_primitive_type] = ACTIONS(1319), + [anon_sym_enum] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_switch] = ACTIONS(1319), + [anon_sym_case] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_goto] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1319), + [anon_sym___alignof__] = ACTIONS(1319), + [anon_sym___alignof] = ACTIONS(1319), + [anon_sym__alignof] = ACTIONS(1319), + [anon_sym_alignof] = ACTIONS(1319), + [anon_sym__Alignof] = ACTIONS(1319), + [anon_sym_offsetof] = ACTIONS(1319), + [anon_sym__Generic] = ACTIONS(1319), + [anon_sym_asm] = ACTIONS(1319), + [anon_sym___asm__] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1321), + [anon_sym_L_SQUOTE] = ACTIONS(1321), + [anon_sym_u_SQUOTE] = ACTIONS(1321), + [anon_sym_U_SQUOTE] = ACTIONS(1321), + [anon_sym_u8_SQUOTE] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_L_DQUOTE] = ACTIONS(1321), + [anon_sym_u_DQUOTE] = ACTIONS(1321), + [anon_sym_U_DQUOTE] = ACTIONS(1321), + [anon_sym_u8_DQUOTE] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [sym_true] = ACTIONS(1319), + [sym_false] = ACTIONS(1319), + [anon_sym_NULL] = ACTIONS(1319), + [anon_sym_nullptr] = ACTIONS(1319), [sym_comment] = ACTIONS(3), }, - [368] = { - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1255), - [aux_sym_preproc_include_token1] = ACTIONS(1255), - [aux_sym_preproc_def_token1] = ACTIONS(1255), - [aux_sym_preproc_if_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), - [sym_preproc_directive] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym___extension__] = ACTIONS(1255), - [anon_sym_typedef] = ACTIONS(1255), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym___attribute__] = ACTIONS(1255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1257), - [anon_sym___declspec] = ACTIONS(1255), - [anon_sym___cdecl] = ACTIONS(1255), - [anon_sym___clrcall] = ACTIONS(1255), - [anon_sym___stdcall] = ACTIONS(1255), - [anon_sym___fastcall] = ACTIONS(1255), - [anon_sym___thiscall] = ACTIONS(1255), - [anon_sym___vectorcall] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_signed] = ACTIONS(1255), - [anon_sym_unsigned] = ACTIONS(1255), - [anon_sym_long] = ACTIONS(1255), - [anon_sym_short] = ACTIONS(1255), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_auto] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1255), - [anon_sym___inline] = ACTIONS(1255), - [anon_sym___inline__] = ACTIONS(1255), - [anon_sym___forceinline] = ACTIONS(1255), - [anon_sym_thread_local] = ACTIONS(1255), - [anon_sym___thread] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_constexpr] = ACTIONS(1255), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym___restrict__] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym__Noreturn] = ACTIONS(1255), - [anon_sym_noreturn] = ACTIONS(1255), - [anon_sym_alignas] = ACTIONS(1255), - [anon_sym__Alignas] = ACTIONS(1255), - [sym_primitive_type] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_goto] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_sizeof] = ACTIONS(1255), - [anon_sym___alignof__] = ACTIONS(1255), - [anon_sym___alignof] = ACTIONS(1255), - [anon_sym__alignof] = ACTIONS(1255), - [anon_sym_alignof] = ACTIONS(1255), - [anon_sym__Alignof] = ACTIONS(1255), - [anon_sym_offsetof] = ACTIONS(1255), - [anon_sym__Generic] = ACTIONS(1255), - [anon_sym_asm] = ACTIONS(1255), - [anon_sym___asm__] = ACTIONS(1255), - [sym_number_literal] = ACTIONS(1257), - [anon_sym_L_SQUOTE] = ACTIONS(1257), - [anon_sym_u_SQUOTE] = ACTIONS(1257), - [anon_sym_U_SQUOTE] = ACTIONS(1257), - [anon_sym_u8_SQUOTE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1257), - [anon_sym_L_DQUOTE] = ACTIONS(1257), - [anon_sym_u_DQUOTE] = ACTIONS(1257), - [anon_sym_U_DQUOTE] = ACTIONS(1257), - [anon_sym_u8_DQUOTE] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [anon_sym_NULL] = ACTIONS(1255), - [anon_sym_nullptr] = ACTIONS(1255), + [363] = { + [sym_attribute_declaration] = STATE(356), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(206), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(356), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [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), }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1299), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1299), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1299), - [sym_preproc_directive] = ACTIONS(1299), - [anon_sym_LPAREN2] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_TILDE] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym___extension__] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym___attribute__] = ACTIONS(1299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1299), - [anon_sym___cdecl] = ACTIONS(1299), - [anon_sym___clrcall] = ACTIONS(1299), - [anon_sym___stdcall] = ACTIONS(1299), - [anon_sym___fastcall] = ACTIONS(1299), - [anon_sym___thiscall] = ACTIONS(1299), - [anon_sym___vectorcall] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1299), - [anon_sym_unsigned] = ACTIONS(1299), - [anon_sym_long] = ACTIONS(1299), - [anon_sym_short] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_auto] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_inline] = ACTIONS(1299), - [anon_sym___inline] = ACTIONS(1299), - [anon_sym___inline__] = ACTIONS(1299), - [anon_sym___forceinline] = ACTIONS(1299), - [anon_sym_thread_local] = ACTIONS(1299), - [anon_sym___thread] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_constexpr] = ACTIONS(1299), - [anon_sym_volatile] = ACTIONS(1299), - [anon_sym_restrict] = ACTIONS(1299), - [anon_sym___restrict__] = ACTIONS(1299), - [anon_sym__Atomic] = ACTIONS(1299), - [anon_sym__Noreturn] = ACTIONS(1299), - [anon_sym_noreturn] = ACTIONS(1299), - [anon_sym_alignas] = ACTIONS(1299), - [anon_sym__Alignas] = ACTIONS(1299), - [sym_primitive_type] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_switch] = ACTIONS(1299), - [anon_sym_case] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_goto] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1301), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_sizeof] = ACTIONS(1299), - [anon_sym___alignof__] = ACTIONS(1299), - [anon_sym___alignof] = ACTIONS(1299), - [anon_sym__alignof] = ACTIONS(1299), - [anon_sym_alignof] = ACTIONS(1299), - [anon_sym__Alignof] = ACTIONS(1299), - [anon_sym_offsetof] = ACTIONS(1299), - [anon_sym__Generic] = ACTIONS(1299), - [anon_sym_asm] = ACTIONS(1299), - [anon_sym___asm__] = ACTIONS(1299), - [sym_number_literal] = ACTIONS(1301), - [anon_sym_L_SQUOTE] = ACTIONS(1301), - [anon_sym_u_SQUOTE] = ACTIONS(1301), - [anon_sym_U_SQUOTE] = ACTIONS(1301), - [anon_sym_u8_SQUOTE] = ACTIONS(1301), - [anon_sym_SQUOTE] = ACTIONS(1301), - [anon_sym_L_DQUOTE] = ACTIONS(1301), - [anon_sym_u_DQUOTE] = ACTIONS(1301), - [anon_sym_U_DQUOTE] = ACTIONS(1301), - [anon_sym_u8_DQUOTE] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1301), - [sym_true] = ACTIONS(1299), - [sym_false] = ACTIONS(1299), - [anon_sym_NULL] = ACTIONS(1299), - [anon_sym_nullptr] = ACTIONS(1299), + [364] = { + [sym_attribute_declaration] = STATE(344), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(178), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_if] = ACTIONS(380), + [anon_sym_switch] = ACTIONS(382), + [anon_sym_case] = ACTIONS(384), + [anon_sym_default] = ACTIONS(386), + [anon_sym_while] = ACTIONS(388), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(392), + [anon_sym_return] = ACTIONS(394), + [anon_sym_break] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_goto] = ACTIONS(400), + [anon_sym___try] = ACTIONS(402), + [anon_sym___leave] = ACTIONS(404), + [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), }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_identifier] = ACTIONS(1267), - [aux_sym_preproc_include_token1] = ACTIONS(1267), - [aux_sym_preproc_def_token1] = ACTIONS(1267), - [aux_sym_preproc_if_token1] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), - [sym_preproc_directive] = ACTIONS(1267), - [anon_sym_LPAREN2] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym___extension__] = ACTIONS(1267), - [anon_sym_typedef] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1267), - [anon_sym___attribute__] = ACTIONS(1267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1269), - [anon_sym___declspec] = ACTIONS(1267), - [anon_sym___cdecl] = ACTIONS(1267), - [anon_sym___clrcall] = ACTIONS(1267), - [anon_sym___stdcall] = ACTIONS(1267), - [anon_sym___fastcall] = ACTIONS(1267), - [anon_sym___thiscall] = ACTIONS(1267), - [anon_sym___vectorcall] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_signed] = ACTIONS(1267), - [anon_sym_unsigned] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_auto] = ACTIONS(1267), - [anon_sym_register] = ACTIONS(1267), - [anon_sym_inline] = ACTIONS(1267), - [anon_sym___inline] = ACTIONS(1267), - [anon_sym___inline__] = ACTIONS(1267), - [anon_sym___forceinline] = ACTIONS(1267), - [anon_sym_thread_local] = ACTIONS(1267), - [anon_sym___thread] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_constexpr] = ACTIONS(1267), - [anon_sym_volatile] = ACTIONS(1267), - [anon_sym_restrict] = ACTIONS(1267), - [anon_sym___restrict__] = ACTIONS(1267), - [anon_sym__Atomic] = ACTIONS(1267), - [anon_sym__Noreturn] = ACTIONS(1267), - [anon_sym_noreturn] = ACTIONS(1267), - [anon_sym_alignas] = ACTIONS(1267), - [anon_sym__Alignas] = ACTIONS(1267), - [sym_primitive_type] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_switch] = ACTIONS(1267), - [anon_sym_case] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_do] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_goto] = ACTIONS(1267), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_sizeof] = ACTIONS(1267), - [anon_sym___alignof__] = ACTIONS(1267), - [anon_sym___alignof] = ACTIONS(1267), - [anon_sym__alignof] = ACTIONS(1267), - [anon_sym_alignof] = ACTIONS(1267), - [anon_sym__Alignof] = ACTIONS(1267), - [anon_sym_offsetof] = ACTIONS(1267), - [anon_sym__Generic] = ACTIONS(1267), - [anon_sym_asm] = ACTIONS(1267), - [anon_sym___asm__] = ACTIONS(1267), - [sym_number_literal] = ACTIONS(1269), - [anon_sym_L_SQUOTE] = ACTIONS(1269), - [anon_sym_u_SQUOTE] = ACTIONS(1269), - [anon_sym_U_SQUOTE] = ACTIONS(1269), - [anon_sym_u8_SQUOTE] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_L_DQUOTE] = ACTIONS(1269), - [anon_sym_u_DQUOTE] = ACTIONS(1269), - [anon_sym_U_DQUOTE] = ACTIONS(1269), - [anon_sym_u8_DQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [sym_true] = ACTIONS(1267), - [sym_false] = ACTIONS(1267), - [anon_sym_NULL] = ACTIONS(1267), - [anon_sym_nullptr] = ACTIONS(1267), + [365] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_statement] = STATE(144), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_if] = ACTIONS(584), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_case] = ACTIONS(588), + [anon_sym_default] = ACTIONS(590), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(594), + [anon_sym_for] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(606), + [anon_sym___leave] = ACTIONS(608), + [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), + }, + [366] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_statement] = STATE(199), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_if] = ACTIONS(584), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_case] = ACTIONS(588), + [anon_sym_default] = ACTIONS(590), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(594), + [anon_sym_for] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(606), + [anon_sym___leave] = ACTIONS(608), + [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), }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(1337), - [sym_identifier] = ACTIONS(1335), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1335), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1335), - [sym_preproc_directive] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1335), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym___attribute__] = ACTIONS(1335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1335), - [anon_sym___cdecl] = ACTIONS(1335), - [anon_sym___clrcall] = ACTIONS(1335), - [anon_sym___stdcall] = ACTIONS(1335), - [anon_sym___fastcall] = ACTIONS(1335), - [anon_sym___thiscall] = ACTIONS(1335), - [anon_sym___vectorcall] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1335), - [anon_sym_unsigned] = ACTIONS(1335), - [anon_sym_long] = ACTIONS(1335), - [anon_sym_short] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_auto] = ACTIONS(1335), - [anon_sym_register] = ACTIONS(1335), - [anon_sym_inline] = ACTIONS(1335), - [anon_sym___inline] = ACTIONS(1335), - [anon_sym___inline__] = ACTIONS(1335), - [anon_sym___forceinline] = ACTIONS(1335), - [anon_sym_thread_local] = ACTIONS(1335), - [anon_sym___thread] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_constexpr] = ACTIONS(1335), - [anon_sym_volatile] = ACTIONS(1335), - [anon_sym_restrict] = ACTIONS(1335), - [anon_sym___restrict__] = ACTIONS(1335), - [anon_sym__Atomic] = ACTIONS(1335), - [anon_sym__Noreturn] = ACTIONS(1335), - [anon_sym_noreturn] = ACTIONS(1335), - [anon_sym_alignas] = ACTIONS(1335), - [anon_sym__Alignas] = ACTIONS(1335), - [sym_primitive_type] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_switch] = ACTIONS(1335), - [anon_sym_case] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_do] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_goto] = ACTIONS(1335), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym___alignof__] = ACTIONS(1335), - [anon_sym___alignof] = ACTIONS(1335), - [anon_sym__alignof] = ACTIONS(1335), - [anon_sym_alignof] = ACTIONS(1335), - [anon_sym__Alignof] = ACTIONS(1335), - [anon_sym_offsetof] = ACTIONS(1335), - [anon_sym__Generic] = ACTIONS(1335), - [anon_sym_asm] = ACTIONS(1335), - [anon_sym___asm__] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1335), - [sym_false] = ACTIONS(1335), - [anon_sym_NULL] = ACTIONS(1335), - [anon_sym_nullptr] = ACTIONS(1335), + [367] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_statement] = STATE(202), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_if] = ACTIONS(584), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_case] = ACTIONS(588), + [anon_sym_default] = ACTIONS(590), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(594), + [anon_sym_for] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(606), + [anon_sym___leave] = ACTIONS(608), + [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), }, - [372] = { - [ts_builtin_sym_end] = ACTIONS(1285), - [sym_identifier] = ACTIONS(1283), - [aux_sym_preproc_include_token1] = ACTIONS(1283), - [aux_sym_preproc_def_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_LPAREN2] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym___extension__] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym___attribute__] = ACTIONS(1283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1285), - [anon_sym___declspec] = ACTIONS(1283), - [anon_sym___cdecl] = ACTIONS(1283), - [anon_sym___clrcall] = ACTIONS(1283), - [anon_sym___stdcall] = ACTIONS(1283), - [anon_sym___fastcall] = ACTIONS(1283), - [anon_sym___thiscall] = ACTIONS(1283), - [anon_sym___vectorcall] = ACTIONS(1283), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_signed] = ACTIONS(1283), - [anon_sym_unsigned] = ACTIONS(1283), - [anon_sym_long] = ACTIONS(1283), - [anon_sym_short] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_auto] = ACTIONS(1283), - [anon_sym_register] = ACTIONS(1283), - [anon_sym_inline] = ACTIONS(1283), - [anon_sym___inline] = ACTIONS(1283), - [anon_sym___inline__] = ACTIONS(1283), - [anon_sym___forceinline] = ACTIONS(1283), - [anon_sym_thread_local] = ACTIONS(1283), - [anon_sym___thread] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_constexpr] = ACTIONS(1283), - [anon_sym_volatile] = ACTIONS(1283), - [anon_sym_restrict] = ACTIONS(1283), - [anon_sym___restrict__] = ACTIONS(1283), - [anon_sym__Atomic] = ACTIONS(1283), - [anon_sym__Noreturn] = ACTIONS(1283), - [anon_sym_noreturn] = ACTIONS(1283), - [anon_sym_alignas] = ACTIONS(1283), - [anon_sym__Alignas] = ACTIONS(1283), - [sym_primitive_type] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [anon_sym_if] = ACTIONS(1283), - [anon_sym_switch] = ACTIONS(1283), - [anon_sym_case] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_while] = ACTIONS(1283), - [anon_sym_do] = ACTIONS(1283), - [anon_sym_for] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1283), - [anon_sym_continue] = ACTIONS(1283), - [anon_sym_goto] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_sizeof] = ACTIONS(1283), - [anon_sym___alignof__] = ACTIONS(1283), - [anon_sym___alignof] = ACTIONS(1283), - [anon_sym__alignof] = ACTIONS(1283), - [anon_sym_alignof] = ACTIONS(1283), - [anon_sym__Alignof] = ACTIONS(1283), - [anon_sym_offsetof] = ACTIONS(1283), - [anon_sym__Generic] = ACTIONS(1283), - [anon_sym_asm] = ACTIONS(1283), - [anon_sym___asm__] = ACTIONS(1283), - [sym_number_literal] = ACTIONS(1285), - [anon_sym_L_SQUOTE] = ACTIONS(1285), - [anon_sym_u_SQUOTE] = ACTIONS(1285), - [anon_sym_U_SQUOTE] = ACTIONS(1285), - [anon_sym_u8_SQUOTE] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1285), - [anon_sym_L_DQUOTE] = ACTIONS(1285), - [anon_sym_u_DQUOTE] = ACTIONS(1285), - [anon_sym_U_DQUOTE] = ACTIONS(1285), - [anon_sym_u8_DQUOTE] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [anon_sym_NULL] = ACTIONS(1283), - [anon_sym_nullptr] = ACTIONS(1283), + [368] = { + [sym_attribute_declaration] = STATE(368), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_statement] = STATE(192), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(368), + [sym_identifier] = ACTIONS(1634), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_case] = ACTIONS(1649), + [anon_sym_default] = ACTIONS(1652), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1658), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1664), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1670), + [anon_sym_goto] = ACTIONS(1673), + [anon_sym___try] = ACTIONS(1676), + [anon_sym___leave] = ACTIONS(1679), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1465), + [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(1471), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym___asm__] = ACTIONS(1477), + [sym_number_literal] = ACTIONS(1480), + [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(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [373] = { - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1361), - [aux_sym_preproc_include_token1] = ACTIONS(1361), - [aux_sym_preproc_def_token1] = ACTIONS(1361), - [aux_sym_preproc_if_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), - [sym_preproc_directive] = ACTIONS(1361), - [anon_sym_LPAREN2] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym___extension__] = ACTIONS(1361), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym___attribute__] = ACTIONS(1361), - [anon_sym_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), - [anon_sym_alignas] = ACTIONS(1361), - [anon_sym__Alignas] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), - [anon_sym___alignof__] = ACTIONS(1361), - [anon_sym___alignof] = ACTIONS(1361), - [anon_sym__alignof] = ACTIONS(1361), - [anon_sym_alignof] = ACTIONS(1361), - [anon_sym__Alignof] = ACTIONS(1361), - [anon_sym_offsetof] = ACTIONS(1361), - [anon_sym__Generic] = ACTIONS(1361), - [anon_sym_asm] = ACTIONS(1361), - [anon_sym___asm__] = ACTIONS(1361), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_L_SQUOTE] = ACTIONS(1363), - [anon_sym_u_SQUOTE] = ACTIONS(1363), - [anon_sym_U_SQUOTE] = ACTIONS(1363), - [anon_sym_u8_SQUOTE] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_L_DQUOTE] = ACTIONS(1363), - [anon_sym_u_DQUOTE] = ACTIONS(1363), - [anon_sym_U_DQUOTE] = ACTIONS(1363), - [anon_sym_u8_DQUOTE] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [anon_sym_NULL] = ACTIONS(1361), - [anon_sym_nullptr] = ACTIONS(1361), + [369] = { + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1684), + [aux_sym_preproc_include_token1] = ACTIONS(1684), + [aux_sym_preproc_def_token1] = ACTIONS(1684), + [aux_sym_preproc_if_token1] = ACTIONS(1684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1684), + [sym_preproc_directive] = ACTIONS(1684), + [anon_sym_LPAREN2] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym___extension__] = ACTIONS(1684), + [anon_sym_typedef] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym___attribute__] = ACTIONS(1684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1682), + [anon_sym___declspec] = ACTIONS(1684), + [anon_sym___cdecl] = ACTIONS(1684), + [anon_sym___clrcall] = ACTIONS(1684), + [anon_sym___stdcall] = ACTIONS(1684), + [anon_sym___fastcall] = ACTIONS(1684), + [anon_sym___thiscall] = ACTIONS(1684), + [anon_sym___vectorcall] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_signed] = ACTIONS(1684), + [anon_sym_unsigned] = ACTIONS(1684), + [anon_sym_long] = ACTIONS(1684), + [anon_sym_short] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_auto] = ACTIONS(1684), + [anon_sym_register] = ACTIONS(1684), + [anon_sym_inline] = ACTIONS(1684), + [anon_sym___inline] = ACTIONS(1684), + [anon_sym___inline__] = ACTIONS(1684), + [anon_sym___forceinline] = ACTIONS(1684), + [anon_sym_thread_local] = ACTIONS(1684), + [anon_sym___thread] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_constexpr] = ACTIONS(1684), + [anon_sym_volatile] = ACTIONS(1684), + [anon_sym_restrict] = ACTIONS(1684), + [anon_sym___restrict__] = ACTIONS(1684), + [anon_sym__Atomic] = ACTIONS(1684), + [anon_sym__Noreturn] = ACTIONS(1684), + [anon_sym_noreturn] = ACTIONS(1684), + [anon_sym__Nonnull] = ACTIONS(1684), + [anon_sym_alignas] = ACTIONS(1684), + [anon_sym__Alignas] = ACTIONS(1684), + [sym_primitive_type] = ACTIONS(1684), + [anon_sym_enum] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1684), + [anon_sym_union] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_do] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1682), + [anon_sym_PLUS_PLUS] = ACTIONS(1682), + [anon_sym_sizeof] = ACTIONS(1684), + [anon_sym___alignof__] = ACTIONS(1684), + [anon_sym___alignof] = ACTIONS(1684), + [anon_sym__alignof] = ACTIONS(1684), + [anon_sym_alignof] = ACTIONS(1684), + [anon_sym__Alignof] = ACTIONS(1684), + [anon_sym_offsetof] = ACTIONS(1684), + [anon_sym__Generic] = ACTIONS(1684), + [anon_sym_asm] = ACTIONS(1684), + [anon_sym___asm__] = ACTIONS(1684), + [sym_number_literal] = ACTIONS(1682), + [anon_sym_L_SQUOTE] = ACTIONS(1682), + [anon_sym_u_SQUOTE] = ACTIONS(1682), + [anon_sym_U_SQUOTE] = ACTIONS(1682), + [anon_sym_u8_SQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_L_DQUOTE] = ACTIONS(1682), + [anon_sym_u_DQUOTE] = ACTIONS(1682), + [anon_sym_U_DQUOTE] = ACTIONS(1682), + [anon_sym_u8_DQUOTE] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [anon_sym_NULL] = ACTIONS(1684), + [anon_sym_nullptr] = ACTIONS(1684), + [sym_comment] = ACTIONS(3), + }, + [370] = { + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_identifier] = ACTIONS(1323), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1323), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1323), + [sym_preproc_directive] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym___extension__] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1323), + [anon_sym_extern] = ACTIONS(1323), + [anon_sym___attribute__] = ACTIONS(1323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1323), + [anon_sym___cdecl] = ACTIONS(1323), + [anon_sym___clrcall] = ACTIONS(1323), + [anon_sym___stdcall] = ACTIONS(1323), + [anon_sym___fastcall] = ACTIONS(1323), + [anon_sym___thiscall] = ACTIONS(1323), + [anon_sym___vectorcall] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1323), + [anon_sym_unsigned] = ACTIONS(1323), + [anon_sym_long] = ACTIONS(1323), + [anon_sym_short] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1323), + [anon_sym_auto] = ACTIONS(1323), + [anon_sym_register] = ACTIONS(1323), + [anon_sym_inline] = ACTIONS(1323), + [anon_sym___inline] = ACTIONS(1323), + [anon_sym___inline__] = ACTIONS(1323), + [anon_sym___forceinline] = ACTIONS(1323), + [anon_sym_thread_local] = ACTIONS(1323), + [anon_sym___thread] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_constexpr] = ACTIONS(1323), + [anon_sym_volatile] = ACTIONS(1323), + [anon_sym_restrict] = ACTIONS(1323), + [anon_sym___restrict__] = ACTIONS(1323), + [anon_sym__Atomic] = ACTIONS(1323), + [anon_sym__Noreturn] = ACTIONS(1323), + [anon_sym_noreturn] = ACTIONS(1323), + [anon_sym__Nonnull] = ACTIONS(1323), + [anon_sym_alignas] = ACTIONS(1323), + [anon_sym__Alignas] = ACTIONS(1323), + [sym_primitive_type] = ACTIONS(1323), + [anon_sym_enum] = ACTIONS(1323), + [anon_sym_struct] = ACTIONS(1323), + [anon_sym_union] = ACTIONS(1323), + [anon_sym_if] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1323), + [anon_sym_case] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1323), + [anon_sym_while] = ACTIONS(1323), + [anon_sym_do] = ACTIONS(1323), + [anon_sym_for] = ACTIONS(1323), + [anon_sym_return] = ACTIONS(1323), + [anon_sym_break] = ACTIONS(1323), + [anon_sym_continue] = ACTIONS(1323), + [anon_sym_goto] = ACTIONS(1323), + [anon_sym_DASH_DASH] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1325), + [anon_sym_sizeof] = ACTIONS(1323), + [anon_sym___alignof__] = ACTIONS(1323), + [anon_sym___alignof] = ACTIONS(1323), + [anon_sym__alignof] = ACTIONS(1323), + [anon_sym_alignof] = ACTIONS(1323), + [anon_sym__Alignof] = ACTIONS(1323), + [anon_sym_offsetof] = ACTIONS(1323), + [anon_sym__Generic] = ACTIONS(1323), + [anon_sym_asm] = ACTIONS(1323), + [anon_sym___asm__] = ACTIONS(1323), + [sym_number_literal] = ACTIONS(1325), + [anon_sym_L_SQUOTE] = ACTIONS(1325), + [anon_sym_u_SQUOTE] = ACTIONS(1325), + [anon_sym_U_SQUOTE] = ACTIONS(1325), + [anon_sym_u8_SQUOTE] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1325), + [anon_sym_L_DQUOTE] = ACTIONS(1325), + [anon_sym_u_DQUOTE] = ACTIONS(1325), + [anon_sym_U_DQUOTE] = ACTIONS(1325), + [anon_sym_u8_DQUOTE] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1325), + [sym_true] = ACTIONS(1323), + [sym_false] = ACTIONS(1323), + [anon_sym_NULL] = ACTIONS(1323), + [anon_sym_nullptr] = ACTIONS(1323), [sym_comment] = ACTIONS(3), }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_include_token1] = ACTIONS(1259), - [aux_sym_preproc_def_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), - [sym_preproc_directive] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym___extension__] = ACTIONS(1259), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym___attribute__] = ACTIONS(1259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1261), - [anon_sym___declspec] = ACTIONS(1259), - [anon_sym___cdecl] = ACTIONS(1259), - [anon_sym___clrcall] = ACTIONS(1259), - [anon_sym___stdcall] = ACTIONS(1259), - [anon_sym___fastcall] = ACTIONS(1259), - [anon_sym___thiscall] = ACTIONS(1259), - [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_signed] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1259), - [anon_sym___inline] = ACTIONS(1259), - [anon_sym___inline__] = ACTIONS(1259), - [anon_sym___forceinline] = ACTIONS(1259), - [anon_sym_thread_local] = ACTIONS(1259), - [anon_sym___thread] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_constexpr] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym___restrict__] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym__Noreturn] = ACTIONS(1259), - [anon_sym_noreturn] = ACTIONS(1259), - [anon_sym_alignas] = ACTIONS(1259), - [anon_sym__Alignas] = ACTIONS(1259), - [sym_primitive_type] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_switch] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_goto] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_sizeof] = ACTIONS(1259), - [anon_sym___alignof__] = ACTIONS(1259), - [anon_sym___alignof] = ACTIONS(1259), - [anon_sym__alignof] = ACTIONS(1259), - [anon_sym_alignof] = ACTIONS(1259), - [anon_sym__Alignof] = ACTIONS(1259), - [anon_sym_offsetof] = ACTIONS(1259), - [anon_sym__Generic] = ACTIONS(1259), - [anon_sym_asm] = ACTIONS(1259), - [anon_sym___asm__] = ACTIONS(1259), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_L_SQUOTE] = ACTIONS(1261), - [anon_sym_u_SQUOTE] = ACTIONS(1261), - [anon_sym_U_SQUOTE] = ACTIONS(1261), - [anon_sym_u8_SQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_L_DQUOTE] = ACTIONS(1261), - [anon_sym_u_DQUOTE] = ACTIONS(1261), - [anon_sym_U_DQUOTE] = ACTIONS(1261), - [anon_sym_u8_DQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_true] = ACTIONS(1259), - [sym_false] = ACTIONS(1259), - [anon_sym_NULL] = ACTIONS(1259), - [anon_sym_nullptr] = ACTIONS(1259), + [371] = { + [ts_builtin_sym_end] = ACTIONS(1329), + [sym_identifier] = ACTIONS(1327), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1327), + [sym_preproc_directive] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1329), + [anon_sym_BANG] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + [anon_sym___extension__] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1327), + [anon_sym_extern] = ACTIONS(1327), + [anon_sym___attribute__] = ACTIONS(1327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1327), + [anon_sym___cdecl] = ACTIONS(1327), + [anon_sym___clrcall] = ACTIONS(1327), + [anon_sym___stdcall] = ACTIONS(1327), + [anon_sym___fastcall] = ACTIONS(1327), + [anon_sym___thiscall] = ACTIONS(1327), + [anon_sym___vectorcall] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1327), + [anon_sym_unsigned] = ACTIONS(1327), + [anon_sym_long] = ACTIONS(1327), + [anon_sym_short] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1327), + [anon_sym_auto] = ACTIONS(1327), + [anon_sym_register] = ACTIONS(1327), + [anon_sym_inline] = ACTIONS(1327), + [anon_sym___inline] = ACTIONS(1327), + [anon_sym___inline__] = ACTIONS(1327), + [anon_sym___forceinline] = ACTIONS(1327), + [anon_sym_thread_local] = ACTIONS(1327), + [anon_sym___thread] = ACTIONS(1327), + [anon_sym_const] = ACTIONS(1327), + [anon_sym_constexpr] = ACTIONS(1327), + [anon_sym_volatile] = ACTIONS(1327), + [anon_sym_restrict] = ACTIONS(1327), + [anon_sym___restrict__] = ACTIONS(1327), + [anon_sym__Atomic] = ACTIONS(1327), + [anon_sym__Noreturn] = ACTIONS(1327), + [anon_sym_noreturn] = ACTIONS(1327), + [anon_sym__Nonnull] = ACTIONS(1327), + [anon_sym_alignas] = ACTIONS(1327), + [anon_sym__Alignas] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1327), + [anon_sym_enum] = ACTIONS(1327), + [anon_sym_struct] = ACTIONS(1327), + [anon_sym_union] = ACTIONS(1327), + [anon_sym_if] = ACTIONS(1327), + [anon_sym_switch] = ACTIONS(1327), + [anon_sym_case] = ACTIONS(1327), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1327), + [anon_sym_break] = ACTIONS(1327), + [anon_sym_continue] = ACTIONS(1327), + [anon_sym_goto] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1329), + [anon_sym_PLUS_PLUS] = ACTIONS(1329), + [anon_sym_sizeof] = ACTIONS(1327), + [anon_sym___alignof__] = ACTIONS(1327), + [anon_sym___alignof] = ACTIONS(1327), + [anon_sym__alignof] = ACTIONS(1327), + [anon_sym_alignof] = ACTIONS(1327), + [anon_sym__Alignof] = ACTIONS(1327), + [anon_sym_offsetof] = ACTIONS(1327), + [anon_sym__Generic] = ACTIONS(1327), + [anon_sym_asm] = ACTIONS(1327), + [anon_sym___asm__] = ACTIONS(1327), + [sym_number_literal] = ACTIONS(1329), + [anon_sym_L_SQUOTE] = ACTIONS(1329), + [anon_sym_u_SQUOTE] = ACTIONS(1329), + [anon_sym_U_SQUOTE] = ACTIONS(1329), + [anon_sym_u8_SQUOTE] = ACTIONS(1329), + [anon_sym_SQUOTE] = ACTIONS(1329), + [anon_sym_L_DQUOTE] = ACTIONS(1329), + [anon_sym_u_DQUOTE] = ACTIONS(1329), + [anon_sym_U_DQUOTE] = ACTIONS(1329), + [anon_sym_u8_DQUOTE] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1329), + [sym_true] = ACTIONS(1327), + [sym_false] = ACTIONS(1327), + [anon_sym_NULL] = ACTIONS(1327), + [anon_sym_nullptr] = ACTIONS(1327), [sym_comment] = ACTIONS(3), }, - [375] = { - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_identifier] = ACTIONS(1263), - [aux_sym_preproc_include_token1] = ACTIONS(1263), - [aux_sym_preproc_def_token1] = ACTIONS(1263), - [aux_sym_preproc_if_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), - [sym_preproc_directive] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym___extension__] = ACTIONS(1263), - [anon_sym_typedef] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym___attribute__] = ACTIONS(1263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1265), - [anon_sym___declspec] = ACTIONS(1263), - [anon_sym___cdecl] = ACTIONS(1263), - [anon_sym___clrcall] = ACTIONS(1263), - [anon_sym___stdcall] = ACTIONS(1263), - [anon_sym___fastcall] = ACTIONS(1263), - [anon_sym___thiscall] = ACTIONS(1263), - [anon_sym___vectorcall] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_signed] = ACTIONS(1263), - [anon_sym_unsigned] = ACTIONS(1263), - [anon_sym_long] = ACTIONS(1263), - [anon_sym_short] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_auto] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_inline] = ACTIONS(1263), - [anon_sym___inline] = ACTIONS(1263), - [anon_sym___inline__] = ACTIONS(1263), - [anon_sym___forceinline] = ACTIONS(1263), - [anon_sym_thread_local] = ACTIONS(1263), - [anon_sym___thread] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_constexpr] = ACTIONS(1263), - [anon_sym_volatile] = ACTIONS(1263), - [anon_sym_restrict] = ACTIONS(1263), - [anon_sym___restrict__] = ACTIONS(1263), - [anon_sym__Atomic] = ACTIONS(1263), - [anon_sym__Noreturn] = ACTIONS(1263), - [anon_sym_noreturn] = ACTIONS(1263), - [anon_sym_alignas] = ACTIONS(1263), - [anon_sym__Alignas] = ACTIONS(1263), - [sym_primitive_type] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(1263), - [anon_sym_case] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_goto] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1263), - [anon_sym___alignof__] = ACTIONS(1263), - [anon_sym___alignof] = ACTIONS(1263), - [anon_sym__alignof] = ACTIONS(1263), - [anon_sym_alignof] = ACTIONS(1263), - [anon_sym__Alignof] = ACTIONS(1263), - [anon_sym_offsetof] = ACTIONS(1263), - [anon_sym__Generic] = ACTIONS(1263), - [anon_sym_asm] = ACTIONS(1263), - [anon_sym___asm__] = ACTIONS(1263), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [anon_sym_NULL] = ACTIONS(1263), - [anon_sym_nullptr] = ACTIONS(1263), + [372] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_statement] = STATE(210), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_if] = ACTIONS(584), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_case] = ACTIONS(588), + [anon_sym_default] = ACTIONS(590), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(594), + [anon_sym_for] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(606), + [anon_sym___leave] = ACTIONS(608), + [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), }, - [376] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1365), - [aux_sym_preproc_include_token1] = ACTIONS(1365), - [aux_sym_preproc_def_token1] = ACTIONS(1365), - [aux_sym_preproc_if_token1] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), - [sym_preproc_directive] = ACTIONS(1365), - [anon_sym_LPAREN2] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym___extension__] = ACTIONS(1365), - [anon_sym_typedef] = ACTIONS(1365), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym___attribute__] = ACTIONS(1365), - [anon_sym_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), - [anon_sym_alignas] = ACTIONS(1365), - [anon_sym__Alignas] = ACTIONS(1365), - [sym_primitive_type] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_case] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_goto] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_sizeof] = ACTIONS(1365), - [anon_sym___alignof__] = ACTIONS(1365), - [anon_sym___alignof] = ACTIONS(1365), - [anon_sym__alignof] = ACTIONS(1365), - [anon_sym_alignof] = ACTIONS(1365), - [anon_sym__Alignof] = ACTIONS(1365), - [anon_sym_offsetof] = ACTIONS(1365), - [anon_sym__Generic] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym___asm__] = ACTIONS(1365), - [sym_number_literal] = ACTIONS(1367), - [anon_sym_L_SQUOTE] = ACTIONS(1367), - [anon_sym_u_SQUOTE] = ACTIONS(1367), - [anon_sym_U_SQUOTE] = ACTIONS(1367), - [anon_sym_u8_SQUOTE] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_L_DQUOTE] = ACTIONS(1367), - [anon_sym_u_DQUOTE] = ACTIONS(1367), - [anon_sym_U_DQUOTE] = ACTIONS(1367), - [anon_sym_u8_DQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [sym_true] = ACTIONS(1365), - [sym_false] = ACTIONS(1365), - [anon_sym_NULL] = ACTIONS(1365), - [anon_sym_nullptr] = ACTIONS(1365), + [373] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_statement] = STATE(212), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_if] = ACTIONS(584), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_case] = ACTIONS(588), + [anon_sym_default] = ACTIONS(590), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(594), + [anon_sym_for] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(606), + [anon_sym___leave] = ACTIONS(608), + [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), }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_identifier] = ACTIONS(1271), - [aux_sym_preproc_include_token1] = ACTIONS(1271), - [aux_sym_preproc_def_token1] = ACTIONS(1271), - [aux_sym_preproc_if_token1] = ACTIONS(1271), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), - [sym_preproc_directive] = ACTIONS(1271), - [anon_sym_LPAREN2] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym___extension__] = ACTIONS(1271), - [anon_sym_typedef] = ACTIONS(1271), - [anon_sym_extern] = ACTIONS(1271), - [anon_sym___attribute__] = ACTIONS(1271), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1273), - [anon_sym___declspec] = ACTIONS(1271), - [anon_sym___cdecl] = ACTIONS(1271), - [anon_sym___clrcall] = ACTIONS(1271), - [anon_sym___stdcall] = ACTIONS(1271), - [anon_sym___fastcall] = ACTIONS(1271), - [anon_sym___thiscall] = ACTIONS(1271), - [anon_sym___vectorcall] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_signed] = ACTIONS(1271), - [anon_sym_unsigned] = ACTIONS(1271), - [anon_sym_long] = ACTIONS(1271), - [anon_sym_short] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_auto] = ACTIONS(1271), - [anon_sym_register] = ACTIONS(1271), - [anon_sym_inline] = ACTIONS(1271), - [anon_sym___inline] = ACTIONS(1271), - [anon_sym___inline__] = ACTIONS(1271), - [anon_sym___forceinline] = ACTIONS(1271), - [anon_sym_thread_local] = ACTIONS(1271), - [anon_sym___thread] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_constexpr] = ACTIONS(1271), - [anon_sym_volatile] = ACTIONS(1271), - [anon_sym_restrict] = ACTIONS(1271), - [anon_sym___restrict__] = ACTIONS(1271), - [anon_sym__Atomic] = ACTIONS(1271), - [anon_sym__Noreturn] = ACTIONS(1271), - [anon_sym_noreturn] = ACTIONS(1271), - [anon_sym_alignas] = ACTIONS(1271), - [anon_sym__Alignas] = ACTIONS(1271), - [sym_primitive_type] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_switch] = ACTIONS(1271), - [anon_sym_case] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_do] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_goto] = ACTIONS(1271), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1271), - [anon_sym___alignof__] = ACTIONS(1271), - [anon_sym___alignof] = ACTIONS(1271), - [anon_sym__alignof] = ACTIONS(1271), - [anon_sym_alignof] = ACTIONS(1271), - [anon_sym__Alignof] = ACTIONS(1271), - [anon_sym_offsetof] = ACTIONS(1271), - [anon_sym__Generic] = ACTIONS(1271), - [anon_sym_asm] = ACTIONS(1271), - [anon_sym___asm__] = ACTIONS(1271), - [sym_number_literal] = ACTIONS(1273), - [anon_sym_L_SQUOTE] = ACTIONS(1273), - [anon_sym_u_SQUOTE] = ACTIONS(1273), - [anon_sym_U_SQUOTE] = ACTIONS(1273), - [anon_sym_u8_SQUOTE] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1273), - [anon_sym_L_DQUOTE] = ACTIONS(1273), - [anon_sym_u_DQUOTE] = ACTIONS(1273), - [anon_sym_U_DQUOTE] = ACTIONS(1273), - [anon_sym_u8_DQUOTE] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1273), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [anon_sym_NULL] = ACTIONS(1271), - [anon_sym_nullptr] = ACTIONS(1271), + [374] = { + [sym_attribute_declaration] = STATE(349), + [sym_compound_statement] = STATE(79), + [sym_attributed_statement] = STATE(79), + [sym_statement] = STATE(83), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym_expression] = STATE(1031), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1834), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(1561), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [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(1397), + [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), }, - [378] = { - [ts_builtin_sym_end] = ACTIONS(1277), - [sym_identifier] = ACTIONS(1275), - [aux_sym_preproc_include_token1] = ACTIONS(1275), - [aux_sym_preproc_def_token1] = ACTIONS(1275), - [aux_sym_preproc_if_token1] = ACTIONS(1275), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), - [sym_preproc_directive] = ACTIONS(1275), - [anon_sym_LPAREN2] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym___extension__] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym___attribute__] = ACTIONS(1275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1277), - [anon_sym___declspec] = ACTIONS(1275), - [anon_sym___cdecl] = ACTIONS(1275), - [anon_sym___clrcall] = ACTIONS(1275), - [anon_sym___stdcall] = ACTIONS(1275), - [anon_sym___fastcall] = ACTIONS(1275), - [anon_sym___thiscall] = ACTIONS(1275), - [anon_sym___vectorcall] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_signed] = ACTIONS(1275), - [anon_sym_unsigned] = ACTIONS(1275), - [anon_sym_long] = ACTIONS(1275), - [anon_sym_short] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_auto] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_inline] = ACTIONS(1275), - [anon_sym___inline] = ACTIONS(1275), - [anon_sym___inline__] = ACTIONS(1275), - [anon_sym___forceinline] = ACTIONS(1275), - [anon_sym_thread_local] = ACTIONS(1275), - [anon_sym___thread] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_constexpr] = ACTIONS(1275), - [anon_sym_volatile] = ACTIONS(1275), - [anon_sym_restrict] = ACTIONS(1275), - [anon_sym___restrict__] = ACTIONS(1275), - [anon_sym__Atomic] = ACTIONS(1275), - [anon_sym__Noreturn] = ACTIONS(1275), - [anon_sym_noreturn] = ACTIONS(1275), - [anon_sym_alignas] = ACTIONS(1275), - [anon_sym__Alignas] = ACTIONS(1275), - [sym_primitive_type] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_switch] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_goto] = ACTIONS(1275), - [anon_sym_DASH_DASH] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1277), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym___alignof__] = ACTIONS(1275), - [anon_sym___alignof] = ACTIONS(1275), - [anon_sym__alignof] = ACTIONS(1275), - [anon_sym_alignof] = ACTIONS(1275), - [anon_sym__Alignof] = ACTIONS(1275), - [anon_sym_offsetof] = ACTIONS(1275), - [anon_sym__Generic] = ACTIONS(1275), - [anon_sym_asm] = ACTIONS(1275), - [anon_sym___asm__] = ACTIONS(1275), - [sym_number_literal] = ACTIONS(1277), - [anon_sym_L_SQUOTE] = ACTIONS(1277), - [anon_sym_u_SQUOTE] = ACTIONS(1277), - [anon_sym_U_SQUOTE] = ACTIONS(1277), - [anon_sym_u8_SQUOTE] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1277), - [anon_sym_L_DQUOTE] = ACTIONS(1277), - [anon_sym_u_DQUOTE] = ACTIONS(1277), - [anon_sym_U_DQUOTE] = ACTIONS(1277), - [anon_sym_u8_DQUOTE] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym_true] = ACTIONS(1275), - [sym_false] = ACTIONS(1275), - [anon_sym_NULL] = ACTIONS(1275), - [anon_sym_nullptr] = ACTIONS(1275), + [375] = { + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1347), + [sym_preproc_directive] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_TILDE] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym___extension__] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym___attribute__] = ACTIONS(1347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1347), + [anon_sym___cdecl] = ACTIONS(1347), + [anon_sym___clrcall] = ACTIONS(1347), + [anon_sym___stdcall] = ACTIONS(1347), + [anon_sym___fastcall] = ACTIONS(1347), + [anon_sym___thiscall] = ACTIONS(1347), + [anon_sym___vectorcall] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1347), + [anon_sym_unsigned] = ACTIONS(1347), + [anon_sym_long] = ACTIONS(1347), + [anon_sym_short] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1347), + [anon_sym_auto] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_inline] = ACTIONS(1347), + [anon_sym___inline] = ACTIONS(1347), + [anon_sym___inline__] = ACTIONS(1347), + [anon_sym___forceinline] = ACTIONS(1347), + [anon_sym_thread_local] = ACTIONS(1347), + [anon_sym___thread] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_constexpr] = ACTIONS(1347), + [anon_sym_volatile] = ACTIONS(1347), + [anon_sym_restrict] = ACTIONS(1347), + [anon_sym___restrict__] = ACTIONS(1347), + [anon_sym__Atomic] = ACTIONS(1347), + [anon_sym__Noreturn] = ACTIONS(1347), + [anon_sym_noreturn] = ACTIONS(1347), + [anon_sym__Nonnull] = ACTIONS(1347), + [anon_sym_alignas] = ACTIONS(1347), + [anon_sym__Alignas] = ACTIONS(1347), + [sym_primitive_type] = ACTIONS(1347), + [anon_sym_enum] = ACTIONS(1347), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_switch] = ACTIONS(1347), + [anon_sym_case] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_goto] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_PLUS_PLUS] = ACTIONS(1349), + [anon_sym_sizeof] = ACTIONS(1347), + [anon_sym___alignof__] = ACTIONS(1347), + [anon_sym___alignof] = ACTIONS(1347), + [anon_sym__alignof] = ACTIONS(1347), + [anon_sym_alignof] = ACTIONS(1347), + [anon_sym__Alignof] = ACTIONS(1347), + [anon_sym_offsetof] = ACTIONS(1347), + [anon_sym__Generic] = ACTIONS(1347), + [anon_sym_asm] = ACTIONS(1347), + [anon_sym___asm__] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1349), + [anon_sym_L_SQUOTE] = ACTIONS(1349), + [anon_sym_u_SQUOTE] = ACTIONS(1349), + [anon_sym_U_SQUOTE] = ACTIONS(1349), + [anon_sym_u8_SQUOTE] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1349), + [anon_sym_L_DQUOTE] = ACTIONS(1349), + [anon_sym_u_DQUOTE] = ACTIONS(1349), + [anon_sym_U_DQUOTE] = ACTIONS(1349), + [anon_sym_u8_DQUOTE] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [anon_sym_NULL] = ACTIONS(1347), + [anon_sym_nullptr] = ACTIONS(1347), [sym_comment] = ACTIONS(3), }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1684), - [aux_sym_preproc_include_token1] = ACTIONS(1684), - [aux_sym_preproc_def_token1] = ACTIONS(1684), - [aux_sym_preproc_if_token1] = ACTIONS(1684), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1684), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1684), - [sym_preproc_directive] = ACTIONS(1684), - [anon_sym_LPAREN2] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1682), - [anon_sym___extension__] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym___attribute__] = ACTIONS(1684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1682), - [anon_sym___declspec] = ACTIONS(1684), - [anon_sym___cdecl] = ACTIONS(1684), - [anon_sym___clrcall] = ACTIONS(1684), - [anon_sym___stdcall] = ACTIONS(1684), - [anon_sym___fastcall] = ACTIONS(1684), - [anon_sym___thiscall] = ACTIONS(1684), - [anon_sym___vectorcall] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_signed] = ACTIONS(1684), - [anon_sym_unsigned] = ACTIONS(1684), - [anon_sym_long] = ACTIONS(1684), - [anon_sym_short] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_auto] = ACTIONS(1684), - [anon_sym_register] = ACTIONS(1684), - [anon_sym_inline] = ACTIONS(1684), - [anon_sym___inline] = ACTIONS(1684), - [anon_sym___inline__] = ACTIONS(1684), - [anon_sym___forceinline] = ACTIONS(1684), - [anon_sym_thread_local] = ACTIONS(1684), - [anon_sym___thread] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_constexpr] = ACTIONS(1684), - [anon_sym_volatile] = ACTIONS(1684), - [anon_sym_restrict] = ACTIONS(1684), - [anon_sym___restrict__] = ACTIONS(1684), - [anon_sym__Atomic] = ACTIONS(1684), - [anon_sym__Noreturn] = ACTIONS(1684), - [anon_sym_noreturn] = ACTIONS(1684), - [anon_sym_alignas] = ACTIONS(1684), - [anon_sym__Alignas] = ACTIONS(1684), - [sym_primitive_type] = ACTIONS(1684), - [anon_sym_enum] = ACTIONS(1684), - [anon_sym_struct] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_do] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_sizeof] = ACTIONS(1684), - [anon_sym___alignof__] = ACTIONS(1684), - [anon_sym___alignof] = ACTIONS(1684), - [anon_sym__alignof] = ACTIONS(1684), - [anon_sym_alignof] = ACTIONS(1684), - [anon_sym__Alignof] = ACTIONS(1684), - [anon_sym_offsetof] = ACTIONS(1684), - [anon_sym__Generic] = ACTIONS(1684), - [anon_sym_asm] = ACTIONS(1684), - [anon_sym___asm__] = ACTIONS(1684), - [sym_number_literal] = ACTIONS(1682), - [anon_sym_L_SQUOTE] = ACTIONS(1682), - [anon_sym_u_SQUOTE] = ACTIONS(1682), - [anon_sym_U_SQUOTE] = ACTIONS(1682), - [anon_sym_u8_SQUOTE] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_L_DQUOTE] = ACTIONS(1682), - [anon_sym_u_DQUOTE] = ACTIONS(1682), - [anon_sym_U_DQUOTE] = ACTIONS(1682), - [anon_sym_u8_DQUOTE] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym_true] = ACTIONS(1684), - [sym_false] = ACTIONS(1684), - [anon_sym_NULL] = ACTIONS(1684), - [anon_sym_nullptr] = ACTIONS(1684), + [376] = { + [sym_attribute_declaration] = STATE(368), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_statement] = STATE(192), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym_seh_try_statement] = STATE(187), + [sym_seh_leave_statement] = STATE(187), + [sym_expression] = STATE(1037), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1836), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(368), + [sym_identifier] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_if] = ACTIONS(584), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_case] = ACTIONS(588), + [anon_sym_default] = ACTIONS(590), + [anon_sym_while] = ACTIONS(592), + [anon_sym_do] = ACTIONS(594), + [anon_sym_for] = ACTIONS(596), + [anon_sym_return] = ACTIONS(598), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_goto] = ACTIONS(604), + [anon_sym___try] = ACTIONS(606), + [anon_sym___leave] = ACTIONS(608), + [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), + }, + [377] = { + [sym_attribute_declaration] = STATE(345), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_statement] = STATE(170), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym_seh_try_statement] = STATE(250), + [sym_seh_leave_statement] = STATE(250), + [sym_expression] = STATE(1009), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1920), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [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(1032), + [anon_sym___leave] = ACTIONS(1034), + [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), + }, + [378] = { + [sym_attribute_declaration] = STATE(363), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(1948), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [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), + }, + [379] = { + [sym_attribute_declaration] = STATE(363), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(1961), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [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), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1289), - [sym_identifier] = ACTIONS(1287), - [aux_sym_preproc_include_token1] = ACTIONS(1287), - [aux_sym_preproc_def_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1287), - [sym_preproc_directive] = ACTIONS(1287), - [anon_sym_LPAREN2] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_TILDE] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_PLUS] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym___extension__] = ACTIONS(1287), - [anon_sym_typedef] = ACTIONS(1287), - [anon_sym_extern] = ACTIONS(1287), - [anon_sym___attribute__] = ACTIONS(1287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1289), - [anon_sym___declspec] = ACTIONS(1287), - [anon_sym___cdecl] = ACTIONS(1287), - [anon_sym___clrcall] = ACTIONS(1287), - [anon_sym___stdcall] = ACTIONS(1287), - [anon_sym___fastcall] = ACTIONS(1287), - [anon_sym___thiscall] = ACTIONS(1287), - [anon_sym___vectorcall] = ACTIONS(1287), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_signed] = ACTIONS(1287), - [anon_sym_unsigned] = ACTIONS(1287), - [anon_sym_long] = ACTIONS(1287), - [anon_sym_short] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_auto] = ACTIONS(1287), - [anon_sym_register] = ACTIONS(1287), - [anon_sym_inline] = ACTIONS(1287), - [anon_sym___inline] = ACTIONS(1287), - [anon_sym___inline__] = ACTIONS(1287), - [anon_sym___forceinline] = ACTIONS(1287), - [anon_sym_thread_local] = ACTIONS(1287), - [anon_sym___thread] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_constexpr] = ACTIONS(1287), - [anon_sym_volatile] = ACTIONS(1287), - [anon_sym_restrict] = ACTIONS(1287), - [anon_sym___restrict__] = ACTIONS(1287), - [anon_sym__Atomic] = ACTIONS(1287), - [anon_sym__Noreturn] = ACTIONS(1287), - [anon_sym_noreturn] = ACTIONS(1287), - [anon_sym_alignas] = ACTIONS(1287), - [anon_sym__Alignas] = ACTIONS(1287), - [sym_primitive_type] = ACTIONS(1287), - [anon_sym_enum] = ACTIONS(1287), - [anon_sym_struct] = ACTIONS(1287), - [anon_sym_union] = ACTIONS(1287), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_switch] = ACTIONS(1287), - [anon_sym_case] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1287), - [anon_sym_while] = ACTIONS(1287), - [anon_sym_do] = ACTIONS(1287), - [anon_sym_for] = ACTIONS(1287), - [anon_sym_return] = ACTIONS(1287), - [anon_sym_break] = ACTIONS(1287), - [anon_sym_continue] = ACTIONS(1287), - [anon_sym_goto] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1287), - [anon_sym___alignof__] = ACTIONS(1287), - [anon_sym___alignof] = ACTIONS(1287), - [anon_sym__alignof] = ACTIONS(1287), - [anon_sym_alignof] = ACTIONS(1287), - [anon_sym__Alignof] = ACTIONS(1287), - [anon_sym_offsetof] = ACTIONS(1287), - [anon_sym__Generic] = ACTIONS(1287), - [anon_sym_asm] = ACTIONS(1287), - [anon_sym___asm__] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(1289), - [anon_sym_L_SQUOTE] = ACTIONS(1289), - [anon_sym_u_SQUOTE] = ACTIONS(1289), - [anon_sym_U_SQUOTE] = ACTIONS(1289), - [anon_sym_u8_SQUOTE] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1289), - [anon_sym_L_DQUOTE] = ACTIONS(1289), - [anon_sym_u_DQUOTE] = ACTIONS(1289), - [anon_sym_U_DQUOTE] = ACTIONS(1289), - [anon_sym_u8_DQUOTE] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1289), - [sym_true] = ACTIONS(1287), - [sym_false] = ACTIONS(1287), - [anon_sym_NULL] = ACTIONS(1287), - [anon_sym_nullptr] = ACTIONS(1287), + [sym_attribute_declaration] = STATE(363), + [sym_compound_statement] = STATE(228), + [sym_attributed_statement] = STATE(228), + [sym_statement] = STATE(1969), + [sym_labeled_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_goto_statement] = STATE(228), + [sym_seh_try_statement] = STATE(228), + [sym_seh_leave_statement] = STATE(228), + [sym_expression] = STATE(1013), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1820), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_attributed_declarator_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1495), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(61), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(73), + [anon_sym_break] = ACTIONS(75), + [anon_sym_continue] = ACTIONS(77), + [anon_sym_goto] = ACTIONS(79), + [anon_sym___try] = ACTIONS(1094), + [anon_sym___leave] = ACTIONS(404), + [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), }, [381] = { - [sym_expression] = STATE(851), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(674), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(674), - [sym_call_expression] = STATE(674), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(674), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(674), - [sym_initializer_list] = STATE(671), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_identifier] = ACTIONS(1387), + [sym_expression] = STATE(880), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(669), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(669), + [sym_call_expression] = STATE(669), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(669), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(669), + [sym_initializer_list] = STATE(674), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_identifier] = ACTIONS(1375), [anon_sym_DOT_DOT_DOT] = ACTIONS(1377), [anon_sym_LPAREN2] = ACTIONS(1377), [anon_sym_BANG] = ACTIONS(1686), [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1375), - [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), [anon_sym_PIPE_PIPE] = ACTIONS(1377), [anon_sym_AMP_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), [anon_sym_EQ_EQ] = ACTIONS(1377), [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1383), [anon_sym_GT_EQ] = ACTIONS(1377), [anon_sym_LT_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), - [anon_sym_LT_LT] = ACTIONS(1375), - [anon_sym_GT_GT] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), [anon_sym_LBRACK] = ACTIONS(1377), [anon_sym_RBRACK] = ACTIONS(1377), - [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(1383), [anon_sym_QMARK] = ACTIONS(1377), [anon_sym_STAR_EQ] = ACTIONS(1377), [anon_sym_SLASH_EQ] = ACTIONS(1377), @@ -54340,7 +54703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1383), [anon_sym_DASH_GT] = ACTIONS(1377), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), @@ -54360,41 +54723,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [382] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1956), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1847), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54416,6 +54779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -54452,41 +54816,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [383] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1821), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1823), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54508,6 +54872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -54544,41 +54909,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [384] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1734), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1801), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54600,6 +54965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -54636,41 +55002,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [385] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1760), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1810), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54692,6 +55058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -54728,41 +55095,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [386] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1890), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1893), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54784,6 +55151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -54820,41 +55188,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [387] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1768), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1905), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54876,6 +55244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -54912,41 +55281,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [388] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1950), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1826), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -54968,6 +55337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -55004,41 +55374,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [389] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1947), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1845), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55060,6 +55430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -55096,41 +55467,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [390] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1849), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1821), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55152,6 +55523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -55188,41 +55560,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [391] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1810), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1922), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55244,6 +55616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -55280,41 +55653,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [392] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1845), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1760), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55336,6 +55709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -55372,41 +55746,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [393] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1012), - [sym__string] = STATE(661), - [sym_comma_expression] = STATE(1736), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1005), + [sym__string] = STATE(680), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), [sym_type_descriptor] = STATE(1944), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55428,6 +55802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -55464,40 +55839,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [394] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1072), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1921), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1064), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1980), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55519,6 +55894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -55555,40 +55931,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [395] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(1074), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_expression] = STATE(1060), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_type_descriptor] = STATE(1878), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__type_definition_type_repeat1] = STATE(982), - [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_type_qualifier] = STATE(983), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(1060), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_expression] = STATE(1057), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_type_descriptor] = STATE(1928), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__type_definition_type_repeat1] = STATE(983), + [aux_sym_sized_type_specifier_repeat1] = STATE(1090), [sym_identifier] = ACTIONS(1692), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -55610,6 +55986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -55686,6 +56063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1698), [anon_sym__Noreturn] = ACTIONS(1698), [anon_sym_noreturn] = ACTIONS(1698), + [anon_sym__Nonnull] = ACTIONS(1698), [anon_sym_alignas] = ACTIONS(1698), [anon_sym__Alignas] = ACTIONS(1698), [sym_primitive_type] = ACTIONS(1698), @@ -55776,6 +56154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1702), [anon_sym__Noreturn] = ACTIONS(1702), [anon_sym_noreturn] = ACTIONS(1702), + [anon_sym__Nonnull] = ACTIONS(1702), [anon_sym_alignas] = ACTIONS(1702), [anon_sym__Alignas] = ACTIONS(1702), [sym_primitive_type] = ACTIONS(1702), @@ -55826,64 +56205,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [398] = { + [sym_else_clause] = STATE(227), + [sym_identifier] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym___extension__] = ACTIONS(1117), + [anon_sym_typedef] = ACTIONS(1117), + [anon_sym_extern] = ACTIONS(1117), + [anon_sym___attribute__] = ACTIONS(1117), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), + [anon_sym___declspec] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(1117), + [anon_sym_unsigned] = ACTIONS(1117), + [anon_sym_long] = ACTIONS(1117), + [anon_sym_short] = ACTIONS(1117), + [anon_sym_static] = ACTIONS(1117), + [anon_sym_auto] = ACTIONS(1117), + [anon_sym_register] = ACTIONS(1117), + [anon_sym_inline] = ACTIONS(1117), + [anon_sym___inline] = ACTIONS(1117), + [anon_sym___inline__] = ACTIONS(1117), + [anon_sym___forceinline] = ACTIONS(1117), + [anon_sym_thread_local] = ACTIONS(1117), + [anon_sym___thread] = ACTIONS(1117), + [anon_sym_const] = ACTIONS(1117), + [anon_sym_constexpr] = ACTIONS(1117), + [anon_sym_volatile] = ACTIONS(1117), + [anon_sym_restrict] = ACTIONS(1117), + [anon_sym___restrict__] = ACTIONS(1117), + [anon_sym__Atomic] = ACTIONS(1117), + [anon_sym__Noreturn] = ACTIONS(1117), + [anon_sym_noreturn] = ACTIONS(1117), + [anon_sym__Nonnull] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(1117), + [anon_sym__Alignas] = ACTIONS(1117), + [sym_primitive_type] = ACTIONS(1117), + [anon_sym_enum] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_do] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_goto] = ACTIONS(1117), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_sizeof] = ACTIONS(1117), + [anon_sym___alignof__] = ACTIONS(1117), + [anon_sym___alignof] = ACTIONS(1117), + [anon_sym__alignof] = ACTIONS(1117), + [anon_sym_alignof] = ACTIONS(1117), + [anon_sym__Alignof] = ACTIONS(1117), + [anon_sym_offsetof] = ACTIONS(1117), + [anon_sym__Generic] = ACTIONS(1117), + [anon_sym_asm] = ACTIONS(1117), + [anon_sym___asm__] = ACTIONS(1117), + [sym_number_literal] = ACTIONS(1119), + [anon_sym_L_SQUOTE] = ACTIONS(1119), + [anon_sym_u_SQUOTE] = ACTIONS(1119), + [anon_sym_U_SQUOTE] = ACTIONS(1119), + [anon_sym_u8_SQUOTE] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1119), + [anon_sym_L_DQUOTE] = ACTIONS(1119), + [anon_sym_u_DQUOTE] = ACTIONS(1119), + [anon_sym_U_DQUOTE] = ACTIONS(1119), + [anon_sym_u8_DQUOTE] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_true] = ACTIONS(1117), + [sym_false] = ACTIONS(1117), + [anon_sym_NULL] = ACTIONS(1117), + [anon_sym_nullptr] = ACTIONS(1117), + [sym_comment] = ACTIONS(3), + }, + [399] = { [sym_expression] = STATE(687), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(811), - [sym_initializer_list] = STATE(671), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(684), - [sym_null] = STATE(661), - [sym_identifier] = ACTIONS(1375), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_initializer_list] = STATE(674), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [sym_identifier] = ACTIONS(1708), [anon_sym_COMMA] = ACTIONS(1377), - [aux_sym_preproc_if_token2] = ACTIONS(1377), - [aux_sym_preproc_else_token1] = ACTIONS(1377), - [aux_sym_preproc_elif_token1] = ACTIONS(1375), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1383), [anon_sym_PERCENT] = ACTIONS(1377), [anon_sym_PIPE_PIPE] = ACTIONS(1377), [anon_sym_AMP_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1383), [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1383), [anon_sym_EQ_EQ] = ACTIONS(1377), [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1383), [anon_sym_GT_EQ] = ACTIONS(1377), [anon_sym_LT_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1383), [anon_sym_LT_LT] = ACTIONS(1377), [anon_sym_GT_GT] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym___attribute__] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1377), [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_COLON] = ACTIONS(1377), [anon_sym_QMARK] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_sizeof] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(83), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -55893,7 +56359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1383), [anon_sym_DASH_GT] = ACTIONS(1377), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), @@ -55912,65 +56378,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [399] = { + [400] = { [sym_expression] = STATE(687), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(671), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [sym_identifier] = ACTIONS(1712), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(809), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(809), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(809), + [sym_initializer_list] = STATE(674), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(700), + [sym_null] = STATE(680), + [sym_identifier] = ACTIONS(1383), [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_RPAREN] = ACTIONS(1377), + [aux_sym_preproc_if_token2] = ACTIONS(1377), + [aux_sym_preproc_else_token1] = ACTIONS(1377), + [aux_sym_preproc_elif_token1] = ACTIONS(1383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1377), [anon_sym_LPAREN2] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1383), [anon_sym_PERCENT] = ACTIONS(1377), [anon_sym_PIPE_PIPE] = ACTIONS(1377), [anon_sym_AMP_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1383), [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1383), [anon_sym_EQ_EQ] = ACTIONS(1377), [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1383), [anon_sym_GT_EQ] = ACTIONS(1377), [anon_sym_LT_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1383), [anon_sym_LT_LT] = ACTIONS(1377), [anon_sym_GT_GT] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1385), [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_COLON] = ACTIONS(1377), [anon_sym_QMARK] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(1714), [anon_sym___alignof__] = ACTIONS(85), [anon_sym___alignof] = ACTIONS(85), [anon_sym__alignof] = ACTIONS(85), @@ -55980,7 +56446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1383), [anon_sym_DASH_GT] = ACTIONS(1377), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), @@ -55999,95 +56465,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_else_clause] = STATE(224), - [sym_identifier] = ACTIONS(1117), - [anon_sym_LPAREN2] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1119), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym___extension__] = ACTIONS(1117), - [anon_sym_typedef] = ACTIONS(1117), - [anon_sym_extern] = ACTIONS(1117), - [anon_sym___attribute__] = ACTIONS(1117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1119), - [anon_sym___declspec] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_signed] = ACTIONS(1117), - [anon_sym_unsigned] = ACTIONS(1117), - [anon_sym_long] = ACTIONS(1117), - [anon_sym_short] = ACTIONS(1117), - [anon_sym_static] = ACTIONS(1117), - [anon_sym_auto] = ACTIONS(1117), - [anon_sym_register] = ACTIONS(1117), - [anon_sym_inline] = ACTIONS(1117), - [anon_sym___inline] = ACTIONS(1117), - [anon_sym___inline__] = ACTIONS(1117), - [anon_sym___forceinline] = ACTIONS(1117), - [anon_sym_thread_local] = ACTIONS(1117), - [anon_sym___thread] = ACTIONS(1117), - [anon_sym_const] = ACTIONS(1117), - [anon_sym_constexpr] = ACTIONS(1117), - [anon_sym_volatile] = ACTIONS(1117), - [anon_sym_restrict] = ACTIONS(1117), - [anon_sym___restrict__] = ACTIONS(1117), - [anon_sym__Atomic] = ACTIONS(1117), - [anon_sym__Noreturn] = ACTIONS(1117), - [anon_sym_noreturn] = ACTIONS(1117), - [anon_sym_alignas] = ACTIONS(1117), - [anon_sym__Alignas] = ACTIONS(1117), - [sym_primitive_type] = ACTIONS(1117), - [anon_sym_enum] = ACTIONS(1117), - [anon_sym_struct] = ACTIONS(1117), - [anon_sym_union] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_goto] = ACTIONS(1117), - [anon_sym___try] = ACTIONS(1117), - [anon_sym___leave] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_sizeof] = ACTIONS(1117), - [anon_sym___alignof__] = ACTIONS(1117), - [anon_sym___alignof] = ACTIONS(1117), - [anon_sym__alignof] = ACTIONS(1117), - [anon_sym_alignof] = ACTIONS(1117), - [anon_sym__Alignof] = ACTIONS(1117), - [anon_sym_offsetof] = ACTIONS(1117), - [anon_sym__Generic] = ACTIONS(1117), - [anon_sym_asm] = ACTIONS(1117), - [anon_sym___asm__] = ACTIONS(1117), - [sym_number_literal] = ACTIONS(1119), - [anon_sym_L_SQUOTE] = ACTIONS(1119), - [anon_sym_u_SQUOTE] = ACTIONS(1119), - [anon_sym_U_SQUOTE] = ACTIONS(1119), - [anon_sym_u8_SQUOTE] = ACTIONS(1119), - [anon_sym_SQUOTE] = ACTIONS(1119), - [anon_sym_L_DQUOTE] = ACTIONS(1119), - [anon_sym_u_DQUOTE] = ACTIONS(1119), - [anon_sym_U_DQUOTE] = ACTIONS(1119), - [anon_sym_u8_DQUOTE] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [anon_sym_NULL] = ACTIONS(1117), - [anon_sym_nullptr] = ACTIONS(1117), - [sym_comment] = ACTIONS(3), - }, [401] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_COMMA] = ACTIONS(1718), [anon_sym_LPAREN2] = ACTIONS(1720), @@ -56145,6 +56525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), [anon_sym_COLON] = ACTIONS(1735), @@ -56171,8 +56552,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [402] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_COMMA] = ACTIONS(1718), [anon_sym_LPAREN2] = ACTIONS(1720), @@ -56194,7 +56575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1724), [anon_sym_LT_LT] = ACTIONS(1724), [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1718), [anon_sym___extension__] = ACTIONS(1716), [anon_sym_extern] = ACTIONS(1716), [anon_sym___attribute__] = ACTIONS(1716), @@ -56230,9 +56611,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), - [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_COLON] = ACTIONS(1739), [anon_sym_QMARK] = ACTIONS(1718), [anon_sym_STAR_EQ] = ACTIONS(1737), [anon_sym_SLASH_EQ] = ACTIONS(1737), @@ -56256,8 +56638,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [403] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [sym_identifier] = ACTIONS(1741), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_TILDE] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym___extension__] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1750), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1748), + [anon_sym_unsigned] = ACTIONS(1748), + [anon_sym_long] = ACTIONS(1748), + [anon_sym_short] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [anon_sym___inline] = ACTIONS(1748), + [anon_sym___inline__] = ACTIONS(1748), + [anon_sym___forceinline] = ACTIONS(1748), + [anon_sym_thread_local] = ACTIONS(1748), + [anon_sym___thread] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_constexpr] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym___restrict__] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym__Noreturn] = ACTIONS(1748), + [anon_sym_noreturn] = ACTIONS(1748), + [anon_sym__Nonnull] = ACTIONS(1748), + [anon_sym_alignas] = ACTIONS(1748), + [anon_sym__Alignas] = ACTIONS(1748), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [anon_sym_if] = ACTIONS(1746), + [anon_sym_switch] = ACTIONS(1746), + [anon_sym_case] = ACTIONS(1746), + [anon_sym_default] = ACTIONS(1746), + [anon_sym_while] = ACTIONS(1746), + [anon_sym_do] = ACTIONS(1746), + [anon_sym_for] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1746), + [anon_sym_goto] = ACTIONS(1746), + [anon_sym___try] = ACTIONS(1746), + [anon_sym___leave] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1744), + [anon_sym_sizeof] = ACTIONS(1746), + [anon_sym___alignof__] = ACTIONS(1746), + [anon_sym___alignof] = ACTIONS(1746), + [anon_sym__alignof] = ACTIONS(1746), + [anon_sym_alignof] = ACTIONS(1746), + [anon_sym__Alignof] = ACTIONS(1746), + [anon_sym_offsetof] = ACTIONS(1746), + [anon_sym__Generic] = ACTIONS(1746), + [anon_sym_asm] = ACTIONS(1746), + [anon_sym___asm__] = ACTIONS(1746), + [sym_number_literal] = ACTIONS(1744), + [anon_sym_L_SQUOTE] = ACTIONS(1744), + [anon_sym_u_SQUOTE] = ACTIONS(1744), + [anon_sym_U_SQUOTE] = ACTIONS(1744), + [anon_sym_u8_SQUOTE] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1744), + [anon_sym_L_DQUOTE] = ACTIONS(1744), + [anon_sym_u_DQUOTE] = ACTIONS(1744), + [anon_sym_U_DQUOTE] = ACTIONS(1744), + [anon_sym_u8_DQUOTE] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1744), + [sym_true] = ACTIONS(1746), + [sym_false] = ACTIONS(1746), + [anon_sym_NULL] = ACTIONS(1746), + [anon_sym_nullptr] = ACTIONS(1746), + [sym_comment] = ACTIONS(3), + }, + [404] = { + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_COMMA] = ACTIONS(1718), [anon_sym_LPAREN2] = ACTIONS(1720), @@ -56279,7 +56747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1724), [anon_sym_LT_LT] = ACTIONS(1724), [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1753), [anon_sym___extension__] = ACTIONS(1716), [anon_sym_extern] = ACTIONS(1716), [anon_sym___attribute__] = ACTIONS(1716), @@ -56315,9 +56783,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), - [anon_sym_COLON] = ACTIONS(1742), + [anon_sym_COLON] = ACTIONS(1756), [anon_sym_QMARK] = ACTIONS(1718), [anon_sym_STAR_EQ] = ACTIONS(1737), [anon_sym_SLASH_EQ] = ACTIONS(1737), @@ -56340,9 +56809,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [405] = { + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_COMMA] = ACTIONS(1718), [anon_sym_LPAREN2] = ACTIONS(1720), @@ -56400,9 +56869,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), - [anon_sym_COLON] = ACTIONS(1744), + [anon_sym_COLON] = ACTIONS(1756), [anon_sym_QMARK] = ACTIONS(1718), [anon_sym_STAR_EQ] = ACTIONS(1737), [anon_sym_SLASH_EQ] = ACTIONS(1737), @@ -56425,9 +56895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [406] = { + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_COMMA] = ACTIONS(1718), [anon_sym_LPAREN2] = ACTIONS(1720), @@ -56449,7 +56919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1724), [anon_sym_LT_LT] = ACTIONS(1724), [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1753), [anon_sym___extension__] = ACTIONS(1716), [anon_sym_extern] = ACTIONS(1716), [anon_sym___attribute__] = ACTIONS(1716), @@ -56485,9 +56955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), - [anon_sym_COLON] = ACTIONS(1742), + [anon_sym_COLON] = ACTIONS(1739), [anon_sym_QMARK] = ACTIONS(1718), [anon_sym_STAR_EQ] = ACTIONS(1737), [anon_sym_SLASH_EQ] = ACTIONS(1737), @@ -56510,94 +56981,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(97), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_identifier] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym___extension__] = ACTIONS(1753), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym___attribute__] = ACTIONS(1753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1755), - [anon_sym___declspec] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_signed] = ACTIONS(1753), - [anon_sym_unsigned] = ACTIONS(1753), - [anon_sym_long] = ACTIONS(1753), - [anon_sym_short] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_auto] = ACTIONS(1753), - [anon_sym_register] = ACTIONS(1753), - [anon_sym_inline] = ACTIONS(1753), - [anon_sym___inline] = ACTIONS(1753), - [anon_sym___inline__] = ACTIONS(1753), - [anon_sym___forceinline] = ACTIONS(1753), - [anon_sym_thread_local] = ACTIONS(1753), - [anon_sym___thread] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_constexpr] = ACTIONS(1753), - [anon_sym_volatile] = ACTIONS(1753), - [anon_sym_restrict] = ACTIONS(1753), - [anon_sym___restrict__] = ACTIONS(1753), - [anon_sym__Atomic] = ACTIONS(1753), - [anon_sym__Noreturn] = ACTIONS(1753), - [anon_sym_noreturn] = ACTIONS(1753), - [anon_sym_alignas] = ACTIONS(1753), - [anon_sym__Alignas] = ACTIONS(1753), - [sym_primitive_type] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1751), - [anon_sym_switch] = ACTIONS(1751), - [anon_sym_case] = ACTIONS(1751), - [anon_sym_default] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_do] = ACTIONS(1751), - [anon_sym_for] = ACTIONS(1751), - [anon_sym_return] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1751), - [anon_sym_continue] = ACTIONS(1751), - [anon_sym_goto] = ACTIONS(1751), - [anon_sym___try] = ACTIONS(1751), - [anon_sym___leave] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1749), - [anon_sym_sizeof] = ACTIONS(1751), - [anon_sym___alignof__] = ACTIONS(1751), - [anon_sym___alignof] = ACTIONS(1751), - [anon_sym__alignof] = ACTIONS(1751), - [anon_sym_alignof] = ACTIONS(1751), - [anon_sym__Alignof] = ACTIONS(1751), - [anon_sym_offsetof] = ACTIONS(1751), - [anon_sym__Generic] = ACTIONS(1751), - [anon_sym_asm] = ACTIONS(1751), - [anon_sym___asm__] = ACTIONS(1751), - [sym_number_literal] = ACTIONS(1749), - [anon_sym_L_SQUOTE] = ACTIONS(1749), - [anon_sym_u_SQUOTE] = ACTIONS(1749), - [anon_sym_U_SQUOTE] = ACTIONS(1749), - [anon_sym_u8_SQUOTE] = ACTIONS(1749), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_L_DQUOTE] = ACTIONS(1749), - [anon_sym_u_DQUOTE] = ACTIONS(1749), - [anon_sym_U_DQUOTE] = ACTIONS(1749), - [anon_sym_u8_DQUOTE] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [anon_sym_NULL] = ACTIONS(1751), - [anon_sym_nullptr] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - }, [407] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_COMMA] = ACTIONS(1718), [anon_sym_LPAREN2] = ACTIONS(1720), @@ -56655,6 +57041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), [anon_sym_COLON] = ACTIONS(1758), @@ -56681,8 +57068,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [408] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_COMMA] = ACTIONS(1718), [anon_sym_LPAREN2] = ACTIONS(1720), @@ -56704,7 +57091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1724), [anon_sym_LT_LT] = ACTIONS(1724), [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1753), [anon_sym___extension__] = ACTIONS(1716), [anon_sym_extern] = ACTIONS(1716), [anon_sym___attribute__] = ACTIONS(1716), @@ -56740,6 +57127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), [anon_sym_COLON] = ACTIONS(1758), @@ -56766,8 +57154,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [409] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_COMMA] = ACTIONS(1718), [anon_sym_LPAREN2] = ACTIONS(1720), @@ -56825,6 +57213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), [anon_sym_COLON] = ACTIONS(1760), @@ -56851,8 +57240,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [410] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_COMMA] = ACTIONS(1718), [anon_sym_LPAREN2] = ACTIONS(1720), @@ -56910,6 +57299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), [anon_sym_QMARK] = ACTIONS(1718), @@ -56935,8 +57325,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [411] = { - [sym_string_literal] = STATE(617), - [aux_sym_sized_type_specifier_repeat1] = STATE(752), + [sym_string_literal] = STATE(618), + [aux_sym_sized_type_specifier_repeat1] = STATE(754), [sym_identifier] = ACTIONS(1716), [anon_sym_LPAREN2] = ACTIONS(1720), [anon_sym_DASH] = ACTIONS(1724), @@ -56993,9 +57383,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1716), [anon_sym__Noreturn] = ACTIONS(1716), [anon_sym_noreturn] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), [anon_sym_alignas] = ACTIONS(1716), [anon_sym__Alignas] = ACTIONS(1716), - [anon_sym_COLON] = ACTIONS(1744), + [anon_sym_COLON] = ACTIONS(1735), [anon_sym_QMARK] = ACTIONS(1718), [anon_sym_STAR_EQ] = ACTIONS(1737), [anon_sym_SLASH_EQ] = ACTIONS(1737), @@ -57019,54 +57410,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [412] = { - [sym_expression] = STATE(851), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_initializer_list] = STATE(671), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), + [sym_expression] = STATE(880), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_initializer_list] = STATE(674), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), [sym_identifier] = ACTIONS(1765), [anon_sym_DOT_DOT_DOT] = ACTIONS(1377), [anon_sym_LPAREN2] = ACTIONS(1377), [anon_sym_BANG] = ACTIONS(1767), [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1383), [anon_sym_PERCENT] = ACTIONS(1377), [anon_sym_PIPE_PIPE] = ACTIONS(1377), [anon_sym_AMP_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1383), [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1383), [anon_sym_EQ_EQ] = ACTIONS(1377), [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1383), [anon_sym_GT_EQ] = ACTIONS(1377), [anon_sym_LT_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1383), [anon_sym_LT_LT] = ACTIONS(1377), [anon_sym_GT_GT] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), [anon_sym_LBRACK] = ACTIONS(1377), [anon_sym_RBRACK] = ACTIONS(1377), [anon_sym_QMARK] = ACTIONS(1377), @@ -57082,7 +57473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1383), [anon_sym_DASH_GT] = ACTIONS(1377), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), @@ -57102,38 +57493,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [413] = { - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1135), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_based_modifier] = STATE(1926), - [sym_ms_call_modifier] = STATE(1229), - [sym__declarator] = STATE(1380), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_based_modifier] = STATE(1813), + [sym_ms_call_modifier] = STATE(1227), + [sym__declarator] = STATE(1386), [sym__abstract_declarator] = STATE(1508), - [sym_parenthesized_declarator] = STATE(1310), - [sym_abstract_parenthesized_declarator] = STATE(1445), - [sym_attributed_declarator] = STATE(1310), - [sym_pointer_declarator] = STATE(1310), - [sym_abstract_pointer_declarator] = STATE(1445), - [sym_function_declarator] = STATE(1310), - [sym_abstract_function_declarator] = STATE(1445), - [sym_array_declarator] = STATE(1310), - [sym_abstract_array_declarator] = STATE(1445), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_variadic_parameter] = STATE(1630), - [sym_parameter_list] = STATE(1447), - [sym_parameter_declaration] = STATE(1630), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_parenthesized_declarator] = STATE(1327), + [sym_abstract_parenthesized_declarator] = STATE(1455), + [sym_attributed_declarator] = STATE(1327), + [sym_pointer_declarator] = STATE(1327), + [sym_abstract_pointer_declarator] = STATE(1455), + [sym_function_declarator] = STATE(1327), + [sym_abstract_function_declarator] = STATE(1455), + [sym_array_declarator] = STATE(1327), + [sym_abstract_array_declarator] = STATE(1455), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_variadic_parameter] = STATE(1538), + [sym_parameter_list] = STATE(1437), + [sym_parameter_declaration] = STATE(1538), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1773), [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), [anon_sym_RPAREN] = ACTIONS(1777), @@ -57173,6 +57564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -57182,32 +57574,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [414] = { - [sym_type_qualifier] = STATE(658), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1069), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_type_qualifier] = STATE(655), + [sym_alignas_qualifier] = STATE(697), + [sym_expression] = STATE(1076), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(655), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), @@ -57227,6 +57619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57259,32 +57652,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [415] = { - [sym_type_qualifier] = STATE(414), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1052), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(414), + [sym_type_qualifier] = STATE(421), + [sym_alignas_qualifier] = STATE(697), + [sym_expression] = STATE(1069), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(421), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), @@ -57304,6 +57697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57336,32 +57730,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [416] = { - [sym_type_qualifier] = STATE(658), - [sym_alignas_qualifier] = STATE(700), + [sym_type_qualifier] = STATE(655), + [sym_alignas_qualifier] = STATE(697), [sym_expression] = STATE(1061), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(658), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(655), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), @@ -57381,6 +57775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57413,32 +57808,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [417] = { - [sym_type_qualifier] = STATE(658), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1058), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_type_qualifier] = STATE(420), + [sym_alignas_qualifier] = STATE(697), + [sym_expression] = STATE(1056), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(420), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), @@ -57448,8 +57843,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1813), [anon_sym_AMP] = ACTIONS(1791), [anon_sym___extension__] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_RBRACK] = ACTIONS(1815), + [anon_sym_static] = ACTIONS(1815), + [anon_sym_RBRACK] = ACTIONS(1817), [anon_sym_const] = ACTIONS(1793), [anon_sym_constexpr] = ACTIONS(1793), [anon_sym_volatile] = ACTIONS(1793), @@ -57458,6 +57853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57490,42 +57886,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [418] = { - [sym_type_qualifier] = STATE(421), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1065), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(421), + [sym_type_qualifier] = STATE(655), + [sym_alignas_qualifier] = STATE(697), + [sym_expression] = STATE(1073), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(655), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), [anon_sym_TILDE] = ACTIONS(1769), [anon_sym_DASH] = ACTIONS(1767), [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1819), [anon_sym_AMP] = ACTIONS(1791), [anon_sym___extension__] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1795), [anon_sym_RBRACK] = ACTIONS(1821), [anon_sym_const] = ACTIONS(1793), [anon_sym_constexpr] = ACTIONS(1793), @@ -57535,6 +57931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57567,32 +57964,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [419] = { - [sym_type_qualifier] = STATE(416), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1055), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(416), + [sym_type_qualifier] = STATE(414), + [sym_alignas_qualifier] = STATE(697), + [sym_expression] = STATE(1052), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(414), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), @@ -57612,6 +58009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57644,32 +58042,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [420] = { - [sym_type_qualifier] = STATE(417), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1059), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(417), + [sym_type_qualifier] = STATE(655), + [sym_alignas_qualifier] = STATE(697), + [sym_expression] = STATE(1054), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(655), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), @@ -57679,8 +58077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1829), [anon_sym_AMP] = ACTIONS(1791), [anon_sym___extension__] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1833), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_RBRACK] = ACTIONS(1831), [anon_sym_const] = ACTIONS(1793), [anon_sym_constexpr] = ACTIONS(1793), [anon_sym_volatile] = ACTIONS(1793), @@ -57689,6 +58087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57721,43 +58120,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [421] = { - [sym_type_qualifier] = STATE(658), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1067), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_type_qualifier] = STATE(655), + [sym_alignas_qualifier] = STATE(697), + [sym_expression] = STATE(1065), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(655), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), [anon_sym_TILDE] = ACTIONS(1769), [anon_sym_DASH] = ACTIONS(1767), [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1833), [anon_sym_AMP] = ACTIONS(1791), [anon_sym___extension__] = ACTIONS(1793), [anon_sym_static] = ACTIONS(1795), - [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1835), [anon_sym_const] = ACTIONS(1793), [anon_sym_constexpr] = ACTIONS(1793), [anon_sym_volatile] = ACTIONS(1793), @@ -57766,6 +58165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57798,42 +58198,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [422] = { - [sym_type_qualifier] = STATE(658), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1056), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(658), + [sym_type_qualifier] = STATE(416), + [sym_alignas_qualifier] = STATE(697), + [sym_expression] = STATE(1067), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(416), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), [anon_sym_TILDE] = ACTIONS(1769), [anon_sym_DASH] = ACTIONS(1767), [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_STAR] = ACTIONS(1837), [anon_sym_AMP] = ACTIONS(1791), [anon_sym___extension__] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1839), [anon_sym_RBRACK] = ACTIONS(1841), [anon_sym_const] = ACTIONS(1793), [anon_sym_constexpr] = ACTIONS(1793), @@ -57843,6 +58243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57875,32 +58276,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [423] = { - [sym_type_qualifier] = STATE(422), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1068), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(893), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(893), - [sym_call_expression] = STATE(893), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(893), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(893), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_array_declarator_repeat1] = STATE(422), + [sym_type_qualifier] = STATE(418), + [sym_alignas_qualifier] = STATE(697), + [sym_expression] = STATE(1075), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(897), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(897), + [sym_call_expression] = STATE(897), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(897), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(897), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_array_declarator_repeat1] = STATE(418), [sym_identifier] = ACTIONS(1765), [anon_sym_LPAREN2] = ACTIONS(1787), [anon_sym_BANG] = ACTIONS(1769), @@ -57920,6 +58321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(1793), [anon_sym__Noreturn] = ACTIONS(1793), [anon_sym_noreturn] = ACTIONS(1793), + [anon_sym__Nonnull] = ACTIONS(1793), [anon_sym_alignas] = ACTIONS(1799), [anon_sym__Alignas] = ACTIONS(1799), [anon_sym_DASH_DASH] = ACTIONS(1801), @@ -57952,33 +58354,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [424] = { - [sym_preproc_def] = STATE(425), - [sym_preproc_function_def] = STATE(425), - [sym_preproc_call] = STATE(425), - [sym_preproc_if_in_field_declaration_list] = STATE(425), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(425), - [sym_preproc_else_in_field_declaration_list] = STATE(1894), - [sym_preproc_elif_in_field_declaration_list] = STATE(1894), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1894), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(443), + [sym_preproc_function_def] = STATE(443), + [sym_preproc_call] = STATE(443), + [sym_preproc_if_in_field_declaration_list] = STATE(443), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), + [sym_preproc_else_in_field_declaration_list] = STATE(1921), + [sym_preproc_elif_in_field_declaration_list] = STATE(1921), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1921), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(425), - [sym_field_declaration] = STATE(425), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(425), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(443), + [sym_field_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58016,6 +58418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58025,33 +58428,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [425] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1967), - [sym_preproc_elif_in_field_declaration_list] = STATE(1967), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1967), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(443), + [sym_preproc_function_def] = STATE(443), + [sym_preproc_call] = STATE(443), + [sym_preproc_if_in_field_declaration_list] = STATE(443), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), + [sym_preproc_else_in_field_declaration_list] = STATE(1952), + [sym_preproc_elif_in_field_declaration_list] = STATE(1952), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1952), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(443), + [sym_field_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58089,6 +58492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58098,33 +58502,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [426] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1816), - [sym_preproc_elif_in_field_declaration_list] = STATE(1816), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1816), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(436), + [sym_preproc_function_def] = STATE(436), + [sym_preproc_call] = STATE(436), + [sym_preproc_if_in_field_declaration_list] = STATE(436), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(436), + [sym_preproc_else_in_field_declaration_list] = STATE(1919), + [sym_preproc_elif_in_field_declaration_list] = STATE(1919), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1919), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(436), + [sym_field_declaration] = STATE(436), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(436), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58162,6 +58566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58169,35 +58574,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(55), [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), - }, - [427] = { - [sym_preproc_def] = STATE(429), - [sym_preproc_function_def] = STATE(429), - [sym_preproc_call] = STATE(429), - [sym_preproc_if_in_field_declaration_list] = STATE(429), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(429), - [sym_preproc_else_in_field_declaration_list] = STATE(1800), - [sym_preproc_elif_in_field_declaration_list] = STATE(1800), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1800), - [sym__declaration_modifiers] = STATE(701), + }, + [427] = { + [sym_preproc_def] = STATE(443), + [sym_preproc_function_def] = STATE(443), + [sym_preproc_call] = STATE(443), + [sym_preproc_if_in_field_declaration_list] = STATE(443), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), + [sym_preproc_else_in_field_declaration_list] = STATE(1784), + [sym_preproc_elif_in_field_declaration_list] = STATE(1784), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1784), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(429), - [sym_field_declaration] = STATE(429), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(429), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(443), + [sym_field_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58235,6 +58640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58244,33 +58650,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [428] = { - [sym_preproc_def] = STATE(426), - [sym_preproc_function_def] = STATE(426), - [sym_preproc_call] = STATE(426), - [sym_preproc_if_in_field_declaration_list] = STATE(426), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(426), - [sym_preproc_else_in_field_declaration_list] = STATE(1806), - [sym_preproc_elif_in_field_declaration_list] = STATE(1806), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1806), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(424), + [sym_preproc_function_def] = STATE(424), + [sym_preproc_call] = STATE(424), + [sym_preproc_if_in_field_declaration_list] = STATE(424), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(424), + [sym_preproc_else_in_field_declaration_list] = STATE(1852), + [sym_preproc_elif_in_field_declaration_list] = STATE(1852), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1852), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(426), - [sym_field_declaration] = STATE(426), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(426), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(424), + [sym_field_declaration] = STATE(424), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(424), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58308,6 +58714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58317,33 +58724,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [429] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1813), - [sym_preproc_elif_in_field_declaration_list] = STATE(1813), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1813), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_preproc_else_in_field_declaration_list] = STATE(1916), + [sym_preproc_elif_in_field_declaration_list] = STATE(1916), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1916), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58381,6 +58788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58390,33 +58798,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [430] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1900), - [sym_preproc_elif_in_field_declaration_list] = STATE(1900), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1900), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(443), + [sym_preproc_function_def] = STATE(443), + [sym_preproc_call] = STATE(443), + [sym_preproc_if_in_field_declaration_list] = STATE(443), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), + [sym_preproc_else_in_field_declaration_list] = STATE(1924), + [sym_preproc_elif_in_field_declaration_list] = STATE(1924), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1924), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(443), + [sym_field_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58454,6 +58862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58463,33 +58872,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [431] = { - [sym_preproc_def] = STATE(434), - [sym_preproc_function_def] = STATE(434), - [sym_preproc_call] = STATE(434), - [sym_preproc_if_in_field_declaration_list] = STATE(434), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(434), - [sym_preproc_else_in_field_declaration_list] = STATE(1755), - [sym_preproc_elif_in_field_declaration_list] = STATE(1755), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1755), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(443), + [sym_preproc_function_def] = STATE(443), + [sym_preproc_call] = STATE(443), + [sym_preproc_if_in_field_declaration_list] = STATE(443), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), + [sym_preproc_else_in_field_declaration_list] = STATE(1860), + [sym_preproc_elif_in_field_declaration_list] = STATE(1860), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1860), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(434), - [sym_field_declaration] = STATE(434), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(434), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(443), + [sym_field_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58527,6 +58936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58536,33 +58946,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [432] = { - [sym_preproc_def] = STATE(435), - [sym_preproc_function_def] = STATE(435), - [sym_preproc_call] = STATE(435), - [sym_preproc_if_in_field_declaration_list] = STATE(435), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(435), - [sym_preproc_else_in_field_declaration_list] = STATE(1857), - [sym_preproc_elif_in_field_declaration_list] = STATE(1857), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1857), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(434), + [sym_preproc_function_def] = STATE(434), + [sym_preproc_call] = STATE(434), + [sym_preproc_if_in_field_declaration_list] = STATE(434), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(434), + [sym_preproc_else_in_field_declaration_list] = STATE(1839), + [sym_preproc_elif_in_field_declaration_list] = STATE(1839), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1839), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(435), - [sym_field_declaration] = STATE(435), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(435), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(434), + [sym_field_declaration] = STATE(434), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(434), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58600,6 +59010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58609,33 +59020,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [433] = { - [sym_preproc_def] = STATE(430), - [sym_preproc_function_def] = STATE(430), - [sym_preproc_call] = STATE(430), - [sym_preproc_if_in_field_declaration_list] = STATE(430), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), - [sym_preproc_else_in_field_declaration_list] = STATE(1852), - [sym_preproc_elif_in_field_declaration_list] = STATE(1852), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1852), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(435), + [sym_preproc_function_def] = STATE(435), + [sym_preproc_call] = STATE(435), + [sym_preproc_if_in_field_declaration_list] = STATE(435), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(435), + [sym_preproc_else_in_field_declaration_list] = STATE(1947), + [sym_preproc_elif_in_field_declaration_list] = STATE(1947), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1947), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(430), - [sym_field_declaration] = STATE(430), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(435), + [sym_field_declaration] = STATE(435), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(435), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58673,6 +59084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58682,33 +59094,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [434] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1848), - [sym_preproc_elif_in_field_declaration_list] = STATE(1848), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1848), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(443), + [sym_preproc_function_def] = STATE(443), + [sym_preproc_call] = STATE(443), + [sym_preproc_if_in_field_declaration_list] = STATE(443), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), + [sym_preproc_else_in_field_declaration_list] = STATE(1732), + [sym_preproc_elif_in_field_declaration_list] = STATE(1732), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1732), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(443), + [sym_field_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58746,6 +59158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58755,33 +59168,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [435] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1839), - [sym_preproc_elif_in_field_declaration_list] = STATE(1839), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1839), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(443), + [sym_preproc_function_def] = STATE(443), + [sym_preproc_call] = STATE(443), + [sym_preproc_if_in_field_declaration_list] = STATE(443), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), + [sym_preproc_else_in_field_declaration_list] = STATE(1735), + [sym_preproc_elif_in_field_declaration_list] = STATE(1735), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1735), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(443), + [sym_field_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58819,6 +59232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58828,33 +59242,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [436] = { - [sym_preproc_def] = STATE(438), - [sym_preproc_function_def] = STATE(438), - [sym_preproc_call] = STATE(438), - [sym_preproc_if_in_field_declaration_list] = STATE(438), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(438), - [sym_preproc_else_in_field_declaration_list] = STATE(1918), - [sym_preproc_elif_in_field_declaration_list] = STATE(1918), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1918), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(443), + [sym_preproc_function_def] = STATE(443), + [sym_preproc_call] = STATE(443), + [sym_preproc_if_in_field_declaration_list] = STATE(443), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), + [sym_preproc_else_in_field_declaration_list] = STATE(1800), + [sym_preproc_elif_in_field_declaration_list] = STATE(1800), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1800), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(438), - [sym_field_declaration] = STATE(438), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(438), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(443), + [sym_field_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58892,6 +59306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58901,33 +59316,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [437] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1922), - [sym_preproc_elif_in_field_declaration_list] = STATE(1922), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1922), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(425), + [sym_preproc_function_def] = STATE(425), + [sym_preproc_call] = STATE(425), + [sym_preproc_if_in_field_declaration_list] = STATE(425), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(425), + [sym_preproc_else_in_field_declaration_list] = STATE(1835), + [sym_preproc_elif_in_field_declaration_list] = STATE(1835), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1835), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(425), + [sym_field_declaration] = STATE(425), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(425), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -58965,6 +59380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -58974,33 +59390,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [438] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym_preproc_else_in_field_declaration_list] = STATE(1925), - [sym_preproc_elif_in_field_declaration_list] = STATE(1925), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1925), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(427), + [sym_preproc_function_def] = STATE(427), + [sym_preproc_call] = STATE(427), + [sym_preproc_if_in_field_declaration_list] = STATE(427), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(427), + [sym_preproc_else_in_field_declaration_list] = STATE(1892), + [sym_preproc_elif_in_field_declaration_list] = STATE(1892), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1892), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(427), + [sym_field_declaration] = STATE(427), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(427), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -59038,6 +59454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -59047,33 +59464,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [439] = { - [sym_preproc_def] = STATE(437), - [sym_preproc_function_def] = STATE(437), - [sym_preproc_call] = STATE(437), - [sym_preproc_if_in_field_declaration_list] = STATE(437), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(437), - [sym_preproc_else_in_field_declaration_list] = STATE(1899), - [sym_preproc_elif_in_field_declaration_list] = STATE(1899), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1899), - [sym__declaration_modifiers] = STATE(701), + [sym_preproc_def] = STATE(431), + [sym_preproc_function_def] = STATE(431), + [sym_preproc_call] = STATE(431), + [sym_preproc_if_in_field_declaration_list] = STATE(431), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(431), + [sym_preproc_else_in_field_declaration_list] = STATE(1946), + [sym_preproc_elif_in_field_declaration_list] = STATE(1946), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1946), + [sym__declaration_modifiers] = STATE(698), [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(437), - [sym_field_declaration] = STATE(437), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(437), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(431), + [sym_field_declaration] = STATE(431), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(431), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [aux_sym_preproc_def_token1] = ACTIONS(1851), [aux_sym_preproc_if_token1] = ACTIONS(1853), @@ -59111,6 +59528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -59120,108 +59538,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [440] = { - [sym_expression] = STATE(997), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(1560), - [sym_initializer_pair] = STATE(1560), - [sym_subscript_designator] = STATE(1381), - [sym_subscript_range_designator] = STATE(1381), - [sym_field_designator] = STATE(1381), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_initializer_pair_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1383), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1903), - [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(1905), - [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), - }, - [441] = { - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1135), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_ms_call_modifier] = STATE(1347), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_ms_call_modifier] = STATE(1342), [sym__abstract_declarator] = STATE(1508), - [sym_abstract_parenthesized_declarator] = STATE(1445), - [sym_abstract_pointer_declarator] = STATE(1445), - [sym_abstract_function_declarator] = STATE(1445), - [sym_abstract_array_declarator] = STATE(1445), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym_variadic_parameter] = STATE(1630), - [sym_parameter_list] = STATE(1447), - [sym_parameter_declaration] = STATE(1630), - [sym_macro_type_specifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), + [sym_abstract_parenthesized_declarator] = STATE(1455), + [sym_abstract_pointer_declarator] = STATE(1455), + [sym_abstract_function_declarator] = STATE(1455), + [sym_abstract_array_declarator] = STATE(1455), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym_variadic_parameter] = STATE(1538), + [sym_parameter_list] = STATE(1437), + [sym_parameter_declaration] = STATE(1538), + [sym_macro_type_specifier] = STATE(764), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), [sym_identifier] = ACTIONS(1849), [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_LPAREN2] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_LPAREN2] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1899), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -59255,6 +59601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Atomic] = ACTIONS(47), [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), [anon_sym_alignas] = ACTIONS(49), [anon_sym__Alignas] = ACTIONS(49), [sym_primitive_type] = ACTIONS(51), @@ -59263,37 +59610,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(57), [sym_comment] = ACTIONS(3), }, + [441] = { + [sym_expression] = STATE(997), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_initializer_list] = STATE(1625), + [sym_initializer_pair] = STATE(1625), + [sym_subscript_designator] = STATE(1375), + [sym_subscript_range_designator] = STATE(1375), + [sym_field_designator] = STATE(1375), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_initializer_pair_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1385), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(1907), + [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(1909), + [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), + }, [442] = { - [sym_expression] = STATE(1034), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(1685), - [sym_initializer_pair] = STATE(1685), - [sym_subscript_designator] = STATE(1381), - [sym_subscript_range_designator] = STATE(1381), - [sym_field_designator] = STATE(1381), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_initializer_pair_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(1897), + [sym_expression] = STATE(1040), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_initializer_list] = STATE(1676), + [sym_initializer_pair] = STATE(1676), + [sym_subscript_designator] = STATE(1375), + [sym_subscript_range_designator] = STATE(1375), + [sym_field_designator] = STATE(1375), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_initializer_pair_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59301,9 +59720,9 @@ 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(1383), + [anon_sym_LBRACE] = ACTIONS(1385), [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1907), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -59316,7 +59735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_DOT] = ACTIONS(1909), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -59335,36 +59754,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [443] = { - [sym_expression] = STATE(1034), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(1685), - [sym_initializer_pair] = STATE(1685), - [sym_subscript_designator] = STATE(1381), - [sym_subscript_range_designator] = STATE(1381), - [sym_field_designator] = STATE(1381), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_initializer_pair_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(1897), + [sym_preproc_def] = STATE(443), + [sym_preproc_function_def] = STATE(443), + [sym_preproc_call] = STATE(443), + [sym_preproc_if_in_field_declaration_list] = STATE(443), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(443), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1250), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(443), + [sym_field_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(443), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1913), + [aux_sym_preproc_def_token1] = ACTIONS(1916), + [aux_sym_preproc_if_token1] = ACTIONS(1919), + [aux_sym_preproc_if_token2] = ACTIONS(1922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [aux_sym_preproc_else_token1] = ACTIONS(1922), + [aux_sym_preproc_elif_token1] = ACTIONS(1922), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1922), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1922), + [sym_preproc_directive] = ACTIONS(1927), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1939), + [anon_sym___declspec] = ACTIONS(1942), + [anon_sym_signed] = ACTIONS(1945), + [anon_sym_unsigned] = ACTIONS(1945), + [anon_sym_long] = ACTIONS(1945), + [anon_sym_short] = ACTIONS(1945), + [anon_sym_static] = ACTIONS(1933), + [anon_sym_auto] = ACTIONS(1933), + [anon_sym_register] = ACTIONS(1933), + [anon_sym_inline] = ACTIONS(1933), + [anon_sym___inline] = ACTIONS(1933), + [anon_sym___inline__] = ACTIONS(1933), + [anon_sym___forceinline] = ACTIONS(1933), + [anon_sym_thread_local] = ACTIONS(1933), + [anon_sym___thread] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_constexpr] = ACTIONS(1930), + [anon_sym_volatile] = ACTIONS(1930), + [anon_sym_restrict] = ACTIONS(1930), + [anon_sym___restrict__] = ACTIONS(1930), + [anon_sym__Atomic] = ACTIONS(1930), + [anon_sym__Noreturn] = ACTIONS(1930), + [anon_sym_noreturn] = ACTIONS(1930), + [anon_sym__Nonnull] = ACTIONS(1930), + [anon_sym_alignas] = ACTIONS(1948), + [anon_sym__Alignas] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1960), + [sym_comment] = ACTIONS(3), + }, + [444] = { + [sym_expression] = STATE(1040), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_initializer_list] = STATE(1676), + [sym_initializer_pair] = STATE(1676), + [sym_subscript_designator] = STATE(1375), + [sym_subscript_range_designator] = STATE(1375), + [sym_field_designator] = STATE(1375), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_initializer_pair_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59372,9 +59862,9 @@ 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(1383), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1907), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -59387,7 +59877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_DOT] = ACTIONS(1909), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -59405,37 +59895,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [444] = { - [sym_expression] = STATE(1034), - [sym__string] = STATE(661), - [sym_conditional_expression] = STATE(661), - [sym_assignment_expression] = STATE(661), - [sym_pointer_expression] = STATE(820), - [sym_unary_expression] = STATE(661), - [sym_binary_expression] = STATE(661), - [sym_update_expression] = STATE(661), - [sym_cast_expression] = STATE(661), - [sym_sizeof_expression] = STATE(661), - [sym_alignof_expression] = STATE(661), - [sym_offsetof_expression] = STATE(661), - [sym_generic_expression] = STATE(661), - [sym_subscript_expression] = STATE(820), - [sym_call_expression] = STATE(820), - [sym_gnu_asm_expression] = STATE(661), - [sym_field_expression] = STATE(820), - [sym_compound_literal_expression] = STATE(661), - [sym_parenthesized_expression] = STATE(820), - [sym_initializer_list] = STATE(1685), - [sym_initializer_pair] = STATE(1685), - [sym_subscript_designator] = STATE(1381), - [sym_subscript_range_designator] = STATE(1381), - [sym_field_designator] = STATE(1381), - [sym_char_literal] = STATE(661), - [sym_concatenated_string] = STATE(661), - [sym_string_literal] = STATE(654), - [sym_null] = STATE(661), - [aux_sym_initializer_pair_repeat1] = STATE(1381), - [sym_identifier] = ACTIONS(1897), + [445] = { + [sym_expression] = STATE(1040), + [sym__string] = STATE(680), + [sym_conditional_expression] = STATE(680), + [sym_assignment_expression] = STATE(680), + [sym_pointer_expression] = STATE(824), + [sym_unary_expression] = STATE(680), + [sym_binary_expression] = STATE(680), + [sym_update_expression] = STATE(680), + [sym_cast_expression] = STATE(680), + [sym_sizeof_expression] = STATE(680), + [sym_alignof_expression] = STATE(680), + [sym_offsetof_expression] = STATE(680), + [sym_generic_expression] = STATE(680), + [sym_subscript_expression] = STATE(824), + [sym_call_expression] = STATE(824), + [sym_gnu_asm_expression] = STATE(680), + [sym_field_expression] = STATE(824), + [sym_compound_literal_expression] = STATE(680), + [sym_parenthesized_expression] = STATE(824), + [sym_initializer_list] = STATE(1676), + [sym_initializer_pair] = STATE(1676), + [sym_subscript_designator] = STATE(1375), + [sym_subscript_range_designator] = STATE(1375), + [sym_field_designator] = STATE(1375), + [sym_char_literal] = STATE(680), + [sym_concatenated_string] = STATE(680), + [sym_string_literal] = STATE(660), + [sym_null] = STATE(680), + [aux_sym_initializer_pair_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(1901), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59443,8 +59933,8 @@ 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(1383), - [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1907), [anon_sym_DASH_DASH] = ACTIONS(81), [anon_sym_PLUS_PLUS] = ACTIONS(81), [anon_sym_sizeof] = ACTIONS(83), @@ -59457,7 +59947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(89), [anon_sym_asm] = ACTIONS(91), [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_DOT] = ACTIONS(1909), [sym_number_literal] = ACTIONS(159), [anon_sym_L_SQUOTE] = ACTIONS(95), [anon_sym_u_SQUOTE] = ACTIONS(95), @@ -59475,74 +59965,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_preproc_def] = STATE(445), - [sym_preproc_function_def] = STATE(445), - [sym_preproc_call] = STATE(445), - [sym_preproc_if_in_field_declaration_list] = STATE(445), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(445), - [sym__declaration_modifiers] = STATE(701), - [sym__declaration_specifiers] = STATE(1250), - [sym_attribute_specifier] = STATE(701), - [sym_attribute_declaration] = STATE(701), - [sym_ms_declspec_modifier] = STATE(701), - [sym_storage_class_specifier] = STATE(701), - [sym_type_qualifier] = STATE(701), - [sym_alignas_qualifier] = STATE(707), - [sym_type_specifier] = STATE(713), - [sym_sized_type_specifier] = STATE(756), - [sym_enum_specifier] = STATE(756), - [sym_struct_specifier] = STATE(756), - [sym_union_specifier] = STATE(756), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(756), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(701), - [aux_sym_sized_type_specifier_repeat1] = STATE(771), - [sym_identifier] = ACTIONS(1915), - [aux_sym_preproc_def_token1] = ACTIONS(1918), - [aux_sym_preproc_if_token1] = ACTIONS(1921), - [aux_sym_preproc_if_token2] = ACTIONS(1924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1926), - [aux_sym_preproc_else_token1] = ACTIONS(1924), - [aux_sym_preproc_elif_token1] = ACTIONS(1924), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1924), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1924), - [sym_preproc_directive] = ACTIONS(1929), - [anon_sym___extension__] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1941), - [anon_sym___declspec] = ACTIONS(1944), - [anon_sym_signed] = ACTIONS(1947), - [anon_sym_unsigned] = ACTIONS(1947), - [anon_sym_long] = ACTIONS(1947), - [anon_sym_short] = ACTIONS(1947), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_auto] = ACTIONS(1935), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_inline] = ACTIONS(1935), - [anon_sym___inline] = ACTIONS(1935), - [anon_sym___inline__] = ACTIONS(1935), - [anon_sym___forceinline] = ACTIONS(1935), - [anon_sym_thread_local] = ACTIONS(1935), - [anon_sym___thread] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_constexpr] = ACTIONS(1932), - [anon_sym_volatile] = ACTIONS(1932), - [anon_sym_restrict] = ACTIONS(1932), - [anon_sym___restrict__] = ACTIONS(1932), - [anon_sym__Atomic] = ACTIONS(1932), - [anon_sym__Noreturn] = ACTIONS(1932), - [anon_sym_noreturn] = ACTIONS(1932), - [anon_sym_alignas] = ACTIONS(1950), - [anon_sym__Alignas] = ACTIONS(1950), - [sym_primitive_type] = ACTIONS(1953), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_union] = ACTIONS(1962), + [446] = { + [sym_preproc_def] = STATE(446), + [sym_preproc_function_def] = STATE(446), + [sym_preproc_call] = STATE(446), + [sym_preproc_if_in_field_declaration_list] = STATE(446), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(446), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1249), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(446), + [sym_field_declaration] = STATE(446), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(446), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1913), + [aux_sym_preproc_def_token1] = ACTIONS(1965), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1971), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1971), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1939), + [anon_sym___declspec] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_signed] = ACTIONS(1945), + [anon_sym_unsigned] = ACTIONS(1945), + [anon_sym_long] = ACTIONS(1945), + [anon_sym_short] = ACTIONS(1945), + [anon_sym_static] = ACTIONS(1933), + [anon_sym_auto] = ACTIONS(1933), + [anon_sym_register] = ACTIONS(1933), + [anon_sym_inline] = ACTIONS(1933), + [anon_sym___inline] = ACTIONS(1933), + [anon_sym___inline__] = ACTIONS(1933), + [anon_sym___forceinline] = ACTIONS(1933), + [anon_sym_thread_local] = ACTIONS(1933), + [anon_sym___thread] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_constexpr] = ACTIONS(1930), + [anon_sym_volatile] = ACTIONS(1930), + [anon_sym_restrict] = ACTIONS(1930), + [anon_sym___restrict__] = ACTIONS(1930), + [anon_sym__Atomic] = ACTIONS(1930), + [anon_sym__Noreturn] = ACTIONS(1930), + [anon_sym_noreturn] = ACTIONS(1930), + [anon_sym__Nonnull] = ACTIONS(1930), + [anon_sym_alignas] = ACTIONS(1948), + [anon_sym__Alignas] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1960), + [sym_comment] = ACTIONS(3), + }, + [447] = { + [sym_preproc_def] = STATE(447), + [sym_preproc_function_def] = STATE(447), + [sym_preproc_call] = STATE(447), + [sym_preproc_if_in_field_declaration_list] = STATE(447), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(447), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1255), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(447), + [sym_field_declaration] = STATE(447), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(447), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1913), + [aux_sym_preproc_def_token1] = ACTIONS(1979), + [aux_sym_preproc_if_token1] = ACTIONS(1982), + [aux_sym_preproc_if_token2] = ACTIONS(1922), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1985), + [sym_preproc_directive] = ACTIONS(1988), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1939), + [anon_sym___declspec] = ACTIONS(1942), + [anon_sym_signed] = ACTIONS(1945), + [anon_sym_unsigned] = ACTIONS(1945), + [anon_sym_long] = ACTIONS(1945), + [anon_sym_short] = ACTIONS(1945), + [anon_sym_static] = ACTIONS(1933), + [anon_sym_auto] = ACTIONS(1933), + [anon_sym_register] = ACTIONS(1933), + [anon_sym_inline] = ACTIONS(1933), + [anon_sym___inline] = ACTIONS(1933), + [anon_sym___inline__] = ACTIONS(1933), + [anon_sym___forceinline] = ACTIONS(1933), + [anon_sym_thread_local] = ACTIONS(1933), + [anon_sym___thread] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_constexpr] = ACTIONS(1930), + [anon_sym_volatile] = ACTIONS(1930), + [anon_sym_restrict] = ACTIONS(1930), + [anon_sym___restrict__] = ACTIONS(1930), + [anon_sym__Atomic] = ACTIONS(1930), + [anon_sym__Noreturn] = ACTIONS(1930), + [anon_sym_noreturn] = ACTIONS(1930), + [anon_sym__Nonnull] = ACTIONS(1930), + [anon_sym_alignas] = ACTIONS(1948), + [anon_sym__Alignas] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1960), + [sym_comment] = ACTIONS(3), + }, + [448] = { + [sym_preproc_def] = STATE(451), + [sym_preproc_function_def] = STATE(451), + [sym_preproc_call] = STATE(451), + [sym_preproc_if_in_field_declaration_list] = STATE(451), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(451), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1249), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(451), + [sym_field_declaration] = STATE(451), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(451), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1991), + [aux_sym_preproc_if_token1] = ACTIONS(1993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1995), + [sym_preproc_directive] = ACTIONS(1997), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = 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), + }, + [449] = { + [sym_preproc_def] = STATE(450), + [sym_preproc_function_def] = STATE(450), + [sym_preproc_call] = STATE(450), + [sym_preproc_if_in_field_declaration_list] = STATE(450), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(450), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1255), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(450), + [sym_field_declaration] = STATE(450), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(450), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(2001), + [aux_sym_preproc_if_token1] = ACTIONS(2003), + [aux_sym_preproc_if_token2] = ACTIONS(2005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2007), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2007), + [sym_preproc_directive] = ACTIONS(2009), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = 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), + }, + [450] = { + [sym_preproc_def] = STATE(447), + [sym_preproc_function_def] = STATE(447), + [sym_preproc_call] = STATE(447), + [sym_preproc_if_in_field_declaration_list] = STATE(447), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(447), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1255), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(447), + [sym_field_declaration] = STATE(447), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(447), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(2001), + [aux_sym_preproc_if_token1] = ACTIONS(2003), + [aux_sym_preproc_if_token2] = ACTIONS(2011), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2007), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2007), + [sym_preproc_directive] = ACTIONS(2009), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = 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), + }, + [451] = { + [sym_preproc_def] = STATE(446), + [sym_preproc_function_def] = STATE(446), + [sym_preproc_call] = STATE(446), + [sym_preproc_if_in_field_declaration_list] = STATE(446), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(446), + [sym__declaration_modifiers] = STATE(698), + [sym__declaration_specifiers] = STATE(1249), + [sym_attribute_specifier] = STATE(698), + [sym_attribute_declaration] = STATE(698), + [sym_ms_declspec_modifier] = STATE(698), + [sym_storage_class_specifier] = STATE(698), + [sym_type_qualifier] = STATE(698), + [sym_alignas_qualifier] = STATE(709), + [sym_type_specifier] = STATE(715), + [sym_sized_type_specifier] = STATE(764), + [sym_enum_specifier] = STATE(764), + [sym_struct_specifier] = STATE(764), + [sym_union_specifier] = STATE(764), + [sym__field_declaration_list_item] = STATE(446), + [sym_field_declaration] = STATE(446), + [sym_macro_type_specifier] = STATE(764), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(446), + [aux_sym__declaration_specifiers_repeat1] = STATE(698), + [aux_sym_sized_type_specifier_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1849), + [aux_sym_preproc_def_token1] = ACTIONS(1991), + [aux_sym_preproc_if_token1] = ACTIONS(1993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1995), + [sym_preproc_directive] = ACTIONS(1997), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1115), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym_alignas] = ACTIONS(49), + [anon_sym__Alignas] = 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), }, }; @@ -59551,94 +60373,269 @@ static const uint16_t ts_small_parse_table[] = { [0] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 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(1708), 1, sym_identifier, - ACTIONS(1938), 1, - anon_sym___attribute__, - ACTIONS(1941), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1944), 1, - anon_sym___declspec, - ACTIONS(1953), 1, - sym_primitive_type, - ACTIONS(1956), 1, - anon_sym_enum, - ACTIONS(1959), 1, - anon_sym_struct, - ACTIONS(1962), 1, - anon_sym_union, - ACTIONS(1965), 1, - aux_sym_preproc_def_token1, - ACTIONS(1968), 1, - aux_sym_preproc_if_token1, - ACTIONS(1974), 1, - sym_preproc_directive, - ACTIONS(1977), 1, - anon_sym_RBRACE, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1249), 1, - sym__declaration_specifiers, - ACTIONS(1950), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1971), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1947), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(701), 7, - sym__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(446), 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(1932), 9, + ACTIONS(2015), 1, + anon_sym_RPAREN, + ACTIONS(2017), 1, + anon_sym___extension__, + STATE(660), 1, + sym_string_literal, + STATE(1002), 1, + sym_expression, + STATE(1581), 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(824), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(680), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [114] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 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(1708), 1, + sym_identifier, + ACTIONS(2019), 1, + anon_sym_RPAREN, + ACTIONS(2021), 1, + anon_sym___extension__, + STATE(660), 1, + sym_string_literal, + STATE(1003), 1, + sym_expression, + STATE(1551), 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(824), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(680), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [228] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 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(1708), 1, + sym_identifier, + ACTIONS(2023), 1, anon_sym___extension__, - 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(1935), 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, - [115] = 25, + STATE(660), 1, + sym_string_literal, + STATE(1049), 1, + sym_expression, + STATE(1658), 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(824), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(680), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [339] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -59657,40 +60654,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - ACTIONS(1979), 1, - aux_sym_preproc_def_token1, - ACTIONS(1981), 1, - aux_sym_preproc_if_token1, - ACTIONS(1985), 1, - sym_preproc_directive, - ACTIONS(1987), 1, - anon_sym_RBRACE, - STATE(707), 1, + ACTIONS(2025), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym_ms_call_modifier, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1249), 1, + STATE(1115), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(1983), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, + STATE(275), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -59698,25 +60699,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(446), 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(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -59728,7 +60710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [230] = 25, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [448] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -59747,40 +60740,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - ACTIONS(1979), 1, - aux_sym_preproc_def_token1, - ACTIONS(1981), 1, - aux_sym_preproc_if_token1, - ACTIONS(1985), 1, - sym_preproc_directive, - ACTIONS(1989), 1, - anon_sym_RBRACE, - STATE(707), 1, + ACTIONS(2027), 1, + anon_sym_LBRACE, + STATE(683), 1, + sym_ms_call_modifier, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1249), 1, + STATE(1124), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(1983), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, + STATE(140), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -59788,25 +60785,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(447), 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(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -59818,76 +60796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [345] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - sym_identifier, - ACTIONS(1924), 1, - aux_sym_preproc_if_token2, - ACTIONS(1938), 1, - anon_sym___attribute__, - ACTIONS(1941), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1944), 1, - anon_sym___declspec, - ACTIONS(1953), 1, - sym_primitive_type, - ACTIONS(1956), 1, - anon_sym_enum, - ACTIONS(1959), 1, - anon_sym_struct, - ACTIONS(1962), 1, - anon_sym_union, - ACTIONS(1991), 1, - aux_sym_preproc_def_token1, - ACTIONS(1994), 1, - aux_sym_preproc_if_token1, - ACTIONS(2000), 1, - sym_preproc_directive, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1253), 1, - sym__declaration_specifiers, - ACTIONS(1950), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1997), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1947), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(449), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(1932), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -59897,18 +60806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1935), 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, - [460] = 25, + anon_sym__Nonnull, + [557] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -59927,40 +60826,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - ACTIONS(2003), 1, - aux_sym_preproc_def_token1, - ACTIONS(2005), 1, - aux_sym_preproc_if_token1, - ACTIONS(2007), 1, - aux_sym_preproc_if_token2, - ACTIONS(2011), 1, - sym_preproc_directive, - STATE(707), 1, + ACTIONS(2029), 1, + anon_sym_LBRACE, + STATE(682), 1, + sym_ms_call_modifier, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1253), 1, + STATE(1114), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2009), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, + STATE(306), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -59968,25 +60871,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(451), 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(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -59998,7 +60882,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [575] = 25, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [666] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -60017,40 +60912,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - ACTIONS(2003), 1, - aux_sym_preproc_def_token1, - ACTIONS(2005), 1, - aux_sym_preproc_if_token1, - ACTIONS(2011), 1, - sym_preproc_directive, - ACTIONS(2013), 1, - aux_sym_preproc_if_token2, - STATE(707), 1, + ACTIONS(2031), 1, + anon_sym_LBRACE, + STATE(670), 1, + sym_ms_call_modifier, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1253), 1, + STATE(1120), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2009), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, + STATE(314), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -60058,25 +60957,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(449), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -60088,191 +60968,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [690] = 25, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [775] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1716), 1, + anon_sym_const, + ACTIONS(1720), 1, anon_sym_LPAREN2, - ACTIONS(41), 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(1712), 1, - sym_identifier, - ACTIONS(2015), 1, - anon_sym_RPAREN, - ACTIONS(2017), 1, - anon_sym___extension__, - STATE(654), 1, - sym_string_literal, - STATE(993), 1, - sym_expression, - STATE(1570), 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, + ACTIONS(1726), 1, 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(1733), 1, + anon_sym_EQ, + STATE(618), 1, + sym_string_literal, + STATE(754), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1753), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2033), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(661), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [804] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(41), 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(1712), 1, - sym_identifier, - ACTIONS(2019), 1, - anon_sym_RPAREN, - ACTIONS(2021), 1, - anon_sym___extension__, - STATE(654), 1, - sym_string_literal, - STATE(995), 1, - sym_expression, - STATE(1585), 1, - sym_compound_statement, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1737), 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(1724), 11, 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_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1729), 11, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(1718), 12, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(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(820), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(661), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [918] = 24, + anon_sym_DOT, + anon_sym_DASH_GT, + [866] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(83), 1, anon_sym_sizeof, ACTIONS(87), 1, @@ -60281,16 +61069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2023), 1, - anon_sym___extension__, - STATE(654), 1, + ACTIONS(2035), 1, + anon_sym_RPAREN, + STATE(660), 1, sym_string_literal, - STATE(1032), 1, + STATE(1004), 1, sym_expression, - STATE(1721), 1, - sym_compound_statement, + STATE(1855), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -60330,13 +61118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -60353,92 +61141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1029] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 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(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - ACTIONS(2025), 1, - anon_sym_LBRACE, - STATE(694), 1, - sym_ms_call_modifier, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1104), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(271), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 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, - [1137] = 23, + [974] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60451,15 +61154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2027), 1, - anon_sym_COLON, - STATE(654), 1, + ACTIONS(2037), 1, + anon_sym_SEMI, + STATE(660), 1, sym_string_literal, - STATE(1024), 1, + STATE(1032), 1, sym_expression, - STATE(1752), 1, + STATE(1849), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -60500,13 +61203,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -60523,7 +61226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1245] = 23, + [1082] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60536,16 +61239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2029), 1, - anon_sym_COLON, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1023), 1, + STATE(674), 1, + sym_initializer_list, + STATE(687), 1, sym_expression, - STATE(1825), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -60585,13 +61288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -60608,7 +61311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1353] = 23, + [1190] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60621,15 +61324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2031), 1, - anon_sym_SEMI, - STATE(654), 1, + ACTIONS(2039), 1, + anon_sym_RPAREN, + STATE(660), 1, sym_string_literal, - STATE(1020), 1, + STATE(1025), 1, sym_expression, - STATE(1778), 1, + STATE(1868), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -60670,13 +61373,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -60693,7 +61396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1461] = 23, + [1298] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60706,15 +61409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2033), 1, - anon_sym_SEMI, - STATE(654), 1, + ACTIONS(2041), 1, + anon_sym_RPAREN, + STATE(660), 1, sym_string_literal, - STATE(1021), 1, + STATE(1048), 1, sym_expression, - STATE(1769), 1, + STATE(1843), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -60755,13 +61458,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -60778,7 +61481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1569] = 23, + [1406] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60791,15 +61494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2043), 1, anon_sym_COLON, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1009), 1, + STATE(1034), 1, sym_expression, - STATE(1809), 1, + STATE(1951), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -60840,98 +61543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(661), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1677] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, - sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(671), 1, - sym_initializer_list, - STATE(684), 1, - sym_string_literal, - STATE(687), 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(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 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(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -60948,7 +61566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1785] = 23, + [1514] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -60961,15 +61579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1383), 1, + ACTIONS(1385), 1, anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1031), 1, + STATE(1039), 1, sym_expression, - STATE(1722), 1, + STATE(1673), 1, sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, @@ -61010,13 +61628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -61033,7 +61651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1893] = 23, + [1622] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61046,101 +61664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, - sym_identifier, - ACTIONS(2045), 1, - anon_sym_RPAREN, - STATE(654), 1, - sym_string_literal, - STATE(1014), 1, - sym_expression, - STATE(1808), 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, - 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(820), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(661), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2001] = 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(1712), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2047), 1, - anon_sym_RPAREN, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1037), 1, + STATE(1041), 1, sym_expression, - STATE(1798), 1, - sym_comma_expression, + STATE(1679), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -61180,13 +61713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -61203,7 +61736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2109] = 23, + [1730] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61216,16 +61749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + ACTIONS(2045), 1, + anon_sym_COLON, + STATE(660), 1, sym_string_literal, - STATE(671), 1, - sym_initializer_list, - STATE(687), 1, + STATE(1050), 1, sym_expression, + STATE(1971), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -61265,13 +61798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -61288,7 +61821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2217] = 23, + [1838] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -61297,20 +61830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1383), 1, - anon_sym_LBRACE, ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(2047), 1, sym_identifier, ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(671), 1, + STATE(674), 1, sym_initializer_list, - STATE(684), 1, - sym_string_literal, STATE(687), 1, sym_expression, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -61320,16 +61853,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -61350,13 +61883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -61373,41 +61906,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2325] = 23, + [1946] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2053), 1, - anon_sym_SEMI, - STATE(654), 1, - sym_string_literal, - STATE(1029), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, + anon_sym_LPAREN2, + STATE(674), 1, + sym_initializer_list, + STATE(687), 1, sym_expression, - STATE(1916), 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, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -61417,6 +61938,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2057), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -61435,13 +61968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -61458,92 +61991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2433] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 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(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - ACTIONS(2055), 1, - anon_sym_LBRACE, - STATE(696), 1, - sym_ms_call_modifier, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1116), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(136), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 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, - [2541] = 23, + [2054] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61556,15 +62004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2057), 1, + ACTIONS(2059), 1, anon_sym_SEMI, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1049), 1, + STATE(1011), 1, sym_expression, - STATE(1976), 1, + STATE(1769), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61605,13 +62053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -61628,92 +62076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2649] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 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(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - ACTIONS(2059), 1, - anon_sym_LBRACE, - STATE(682), 1, - sym_ms_call_modifier, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1122), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(367), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 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, - [2757] = 23, + [2162] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61726,15 +62089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, ACTIONS(2061), 1, anon_sym_SEMI, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1019), 1, + STATE(1038), 1, sym_expression, - STATE(1803), 1, + STATE(1871), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61775,13 +62138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -61798,7 +62161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2865] = 23, + [2270] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61811,15 +62174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, ACTIONS(2063), 1, - anon_sym_RPAREN, - STATE(654), 1, + anon_sym_SEMI, + STATE(660), 1, sym_string_literal, - STATE(1039), 1, + STATE(1012), 1, sym_expression, - STATE(1963), 1, + STATE(1776), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -61860,13 +62223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -61883,41 +62246,32 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2973] = 23, + [2378] = 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(1383), 1, - anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(1010), 1, - sym_expression, - STATE(1646), 1, + STATE(674), 1, sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(687), 1, + sym_expression, 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__, @@ -61927,6 +62281,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2067), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -61945,13 +62308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -61968,7 +62331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3081] = 23, + [2486] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -61981,16 +62344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2065), 1, - anon_sym_SEMI, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1035), 1, + STATE(1029), 1, sym_expression, - STATE(1749), 1, - sym_comma_expression, + STATE(1661), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -62030,13 +62393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62053,92 +62416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3189] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 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(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - ACTIONS(2067), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_ms_call_modifier, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1120), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(305), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 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, - [3297] = 23, + [2594] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -62151,15 +62429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, ACTIONS(2069), 1, - anon_sym_COLON, - STATE(654), 1, + anon_sym_SEMI, + STATE(660), 1, sym_string_literal, - STATE(1036), 1, + STATE(1010), 1, sym_expression, - STATE(1850), 1, + STATE(1740), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62200,13 +62478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62223,29 +62501,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3405] = 23, + [2702] = 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(1383), 1, - anon_sym_LBRACE, - ACTIONS(1765), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1787), 1, - anon_sym_LPAREN2, - STATE(654), 1, + ACTIONS(2071), 1, + anon_sym_SEMI, + STATE(660), 1, sym_string_literal, - STATE(671), 1, - sym_initializer_list, - STATE(851), 1, + STATE(1045), 1, sym_expression, + STATE(1761), 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, anon_sym_asm, anon_sym___asm__, @@ -62255,18 +62545,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1791), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -62285,13 +62563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62308,7 +62586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3513] = 23, + [2810] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -62321,15 +62599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2071), 1, - anon_sym_COLON, - STATE(654), 1, + ACTIONS(2073), 1, + anon_sym_RPAREN, + STATE(660), 1, sym_string_literal, - STATE(1038), 1, + STATE(1027), 1, sym_expression, - STATE(1873), 1, + STATE(1887), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62370,13 +62648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62393,32 +62671,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3621] = 23, + [2918] = 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(1383), 1, - anon_sym_LBRACE, - ACTIONS(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1393), 1, - anon_sym_sizeof, - ACTIONS(2073), 1, - anon_sym_LPAREN2, - STATE(654), 1, + ACTIONS(2075), 1, + anon_sym_RPAREN, + STATE(660), 1, sym_string_literal, - STATE(671), 1, - sym_initializer_list, - STATE(687), 1, + STATE(1046), 1, sym_expression, + STATE(1830), 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, anon_sym_asm, anon_sym___asm__, @@ -62428,15 +62715,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1391), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2075), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -62455,13 +62733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62478,83 +62756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3729] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1716), 1, - anon_sym_const, - ACTIONS(1720), 1, - anon_sym_LPAREN2, - ACTIONS(1726), 1, - anon_sym_STAR, - ACTIONS(1733), 1, - anon_sym_EQ, - STATE(617), 1, - sym_string_literal, - STATE(752), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1739), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2077), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1729), 10, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(1737), 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(1724), 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(1718), 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, - [3819] = 23, + [3026] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -62567,15 +62769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2079), 1, - anon_sym_RPAREN, - STATE(654), 1, + ACTIONS(2077), 1, + anon_sym_COLON, + STATE(660), 1, sym_string_literal, STATE(1042), 1, sym_expression, - STATE(1941), 1, + STATE(1850), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62616,13 +62818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62639,41 +62841,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3927] = 23, + [3134] = 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(1712), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2081), 1, - anon_sym_RPAREN, - STATE(654), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(1043), 1, + STATE(674), 1, + sym_initializer_list, + STATE(880), 1, sym_expression, - STATE(1951), 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, anon_sym_asm, anon_sym___asm__, @@ -62683,6 +62873,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -62701,13 +62903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62724,29 +62926,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4035] = 23, + [3242] = 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(1383), 1, - anon_sym_LBRACE, - ACTIONS(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1690), 1, - anon_sym_sizeof, - ACTIONS(2083), 1, - anon_sym_LPAREN2, - STATE(654), 1, + ACTIONS(2079), 1, + anon_sym_COLON, + STATE(660), 1, sym_string_literal, - STATE(671), 1, - sym_initializer_list, - STATE(851), 1, + STATE(1030), 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, anon_sym_asm, anon_sym___asm__, @@ -62756,18 +62970,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1686), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1688), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1791), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2085), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -62786,13 +62988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62809,7 +63011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4143] = 23, + [3350] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -62822,15 +63024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2087), 1, + ACTIONS(2081), 1, anon_sym_COLON, - STATE(654), 1, + STATE(660), 1, sym_string_literal, STATE(1044), 1, sym_expression, - STATE(1955), 1, + STATE(1873), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -62871,13 +63073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62894,41 +63096,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4251] = 23, + [3458] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2089), 1, - anon_sym_RPAREN, - STATE(654), 1, + ACTIONS(1385), 1, + anon_sym_LBRACE, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2083), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(1030), 1, + STATE(674), 1, + sym_initializer_list, + STATE(880), 1, sym_expression, - STATE(1905), 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, anon_sym_asm, anon_sym___asm__, @@ -62938,6 +63128,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2085), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -62956,13 +63158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -62979,7 +63181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4359] = 23, + [3566] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -62992,15 +63194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2091), 1, - anon_sym_SEMI, - STATE(654), 1, + ACTIONS(2087), 1, + anon_sym_RPAREN, + STATE(660), 1, sym_string_literal, - STATE(1040), 1, + STATE(1033), 1, sym_expression, - STATE(1901), 1, + STATE(1925), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -63041,13 +63243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63064,7 +63266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4467] = 23, + [3674] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63077,16 +63279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1383), 1, - anon_sym_LBRACE, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + ACTIONS(2089), 1, + anon_sym_COLON, + STATE(660), 1, sym_string_literal, - STATE(1008), 1, + STATE(1047), 1, sym_expression, - STATE(1664), 1, - sym_initializer_list, + STATE(1955), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -63126,13 +63328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63149,7 +63351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4575] = 22, + [3782] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63162,13 +63364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + ACTIONS(2091), 1, + anon_sym_SEMI, + STATE(660), 1, sym_string_literal, - STATE(1012), 1, + STATE(1007), 1, sym_expression, - STATE(1736), 1, + STATE(1742), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -63209,13 +63413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63232,7 +63436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4680] = 22, + [3890] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -63241,7 +63445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, @@ -63249,9 +63453,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2093), 1, anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(892), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -63292,13 +63496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63315,7 +63519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4785] = 22, + [3995] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -63324,7 +63528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, @@ -63332,9 +63536,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2095), 1, anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(892), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -63375,13 +63579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63398,7 +63602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4890] = 22, + [4100] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -63411,13 +63615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1025), 1, + STATE(988), 1, sym_expression, - STATE(1836), 1, + STATE(1527), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -63458,13 +63662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63481,39 +63685,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4995] = 22, + [4205] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2083), 1, + anon_sym_LPAREN2, + ACTIONS(2097), 1, + anon_sym_RBRACK, + STATE(660), 1, sym_string_literal, - STATE(987), 1, + STATE(892), 1, sym_expression, - STATE(1637), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -63523,6 +63715,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2085), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -63541,13 +63745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63564,7 +63768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5100] = 22, + [4310] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -63573,17 +63777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - ACTIONS(2097), 1, + ACTIONS(2099), 1, anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(892), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -63624,13 +63828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63647,7 +63851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5205] = 22, + [4415] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -63656,17 +63860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - ACTIONS(2099), 1, + ACTIONS(2101), 1, anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(892), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -63707,13 +63911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63730,7 +63934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5310] = 22, + [4520] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -63739,17 +63943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - ACTIONS(2101), 1, + ACTIONS(2103), 1, anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(892), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -63790,13 +63994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63813,27 +64017,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5415] = 22, + [4625] = 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(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1690), 1, - anon_sym_sizeof, - ACTIONS(2083), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(1008), 1, sym_expression, + STATE(1788), 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, anon_sym_asm, anon_sym___asm__, @@ -63843,18 +64059,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1686), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1688), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1791), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2085), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -63873,13 +64077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63896,7 +64100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5520] = 22, + [4730] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -63905,7 +64109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, @@ -63913,9 +64117,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2105), 1, anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(892), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -63956,13 +64160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -63979,16 +64183,99 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5625] = 22, + [4835] = 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(1387), 1, + ACTIONS(1708), 1, + sym_identifier, + STATE(660), 1, + sym_string_literal, + STATE(1005), 1, + sym_expression, + STATE(1746), 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, + 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(824), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(680), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4940] = 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(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, @@ -63996,9 +64283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2107), 1, anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(892), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -64039,13 +64326,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64062,7 +64349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5730] = 22, + [5045] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -64071,7 +64358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, @@ -64079,9 +64366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2109), 1, anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(892), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -64122,13 +64409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64145,7 +64432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5835] = 22, + [5150] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -64154,7 +64441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, @@ -64162,9 +64449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2111), 1, anon_sym_RBRACK, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(892), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -64205,13 +64492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64228,7 +64515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5940] = 21, + [5255] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -64237,15 +64524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2039), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(953), 1, + STATE(884), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -64256,16 +64543,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2043), 2, + ACTIONS(2085), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -64286,13 +64573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64309,7 +64596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6042] = 21, + [5357] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -64318,16 +64605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2039), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(945), 1, + STATE(807), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -64337,16 +64627,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -64367,13 +64654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64390,7 +64677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6144] = 21, + [5459] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -64403,11 +64690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(686), 1, + STATE(957), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -64448,13 +64735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64471,25 +64758,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6246] = 21, + [5561] = 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(949), 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, anon_sym_asm, anon_sym___asm__, @@ -64499,18 +64798,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -64529,13 +64816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64552,25 +64839,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6348] = 21, + [5663] = 21, ACTIONS(3), 1, sym_comment, + 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, + ACTIONS(2113), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(686), 1, + STATE(690), 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__, @@ -64580,18 +64879,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -64610,13 +64897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64633,7 +64920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6450] = 21, + [5765] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -64642,15 +64929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1710), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(2047), 1, sym_identifier, - ACTIONS(2039), 1, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(954), 1, + STATE(950), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -64661,16 +64948,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2043), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -64691,13 +64978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64714,25 +65001,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6552] = 21, + [5867] = 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(939), 1, + STATE(1001), 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__, @@ -64742,18 +65041,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -64772,13 +65059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64795,7 +65082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6654] = 21, + [5969] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -64804,15 +65091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1710), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(2047), 1, sym_identifier, - ACTIONS(2039), 1, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(942), 1, + STATE(952), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -64823,16 +65110,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2043), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -64853,13 +65140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64876,25 +65163,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6756] = 21, + [6071] = 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(944), 1, + STATE(1006), 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__, @@ -64904,18 +65203,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -64934,13 +65221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -64957,25 +65244,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6858] = 21, + [6173] = 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(946), 1, + STATE(995), 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__, @@ -64985,18 +65284,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65015,13 +65302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65038,25 +65325,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6960] = 21, + [6275] = 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(934), 1, + STATE(964), 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__, @@ -65066,18 +65365,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65096,13 +65383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65119,7 +65406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7062] = 21, + [6377] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -65128,15 +65415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(2039), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(950), 1, + STATE(1058), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -65147,16 +65434,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2043), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -65177,13 +65464,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65200,37 +65487,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7164] = 21, + [6479] = 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(1712), 1, + ACTIONS(1714), 1, + anon_sym_sizeof, + ACTIONS(2047), 1, sym_identifier, - STATE(654), 1, + ACTIONS(2049), 1, + anon_sym_LPAREN2, + STATE(700), 1, sym_string_literal, - STATE(1063), 1, + STATE(951), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -65240,6 +65515,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1710), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1712), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2053), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65258,13 +65545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65281,25 +65568,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7266] = 21, + [6581] = 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(936), 1, + STATE(961), 1, sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -65309,18 +65608,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65339,13 +65626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65362,7 +65649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7368] = 21, + [6683] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -65375,11 +65662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1033), 1, + STATE(1053), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -65420,13 +65707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65443,25 +65730,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7470] = 21, + [6785] = 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(1765), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1787), 1, - anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1015), 1, + STATE(976), 1, sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -65471,18 +65770,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1791), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65501,13 +65788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65524,7 +65811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7572] = 21, + [6887] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -65533,15 +65820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2039), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(952), 1, + STATE(783), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -65552,16 +65839,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2043), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -65582,13 +65869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65605,37 +65892,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7674] = 21, + [6989] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2083), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(994), 1, + STATE(879), 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__, @@ -65645,6 +65920,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2085), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65663,13 +65950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65686,7 +65973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7776] = 21, + [7091] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -65695,15 +65982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1765), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1771), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(1787), 1, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(1070), 1, + STATE(784), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -65714,16 +66001,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1767), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1791), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1801), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -65744,13 +66031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65767,37 +66054,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7878] = 21, + [7193] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, + anon_sym_LPAREN2, + STATE(700), 1, sym_string_literal, - STATE(957), 1, + STATE(785), 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__, @@ -65807,6 +66082,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2057), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -65825,13 +66112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65848,7 +66135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7980] = 21, + [7295] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -65857,15 +66144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(760), 1, + STATE(786), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -65876,16 +66163,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -65906,13 +66193,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -65929,7 +66216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8082] = 21, + [7397] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -65938,15 +66225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1690), 1, + ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2083), 1, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(850), 1, + STATE(787), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -65957,16 +66244,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1686), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1688), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1791), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2085), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -65987,13 +66274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66010,7 +66297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8184] = 21, + [7499] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -66019,15 +66306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(761), 1, + STATE(788), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -66038,16 +66325,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -66068,13 +66355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66091,7 +66378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8286] = 21, + [7601] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -66100,15 +66387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(762), 1, + STATE(789), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -66119,16 +66406,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -66149,13 +66436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66172,7 +66459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8388] = 21, + [7703] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -66181,15 +66468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(763), 1, + STATE(790), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -66200,16 +66487,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -66230,13 +66517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66253,7 +66540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8490] = 21, + [7805] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -66262,15 +66549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(764), 1, + STATE(791), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -66281,16 +66568,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -66311,13 +66598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66334,25 +66621,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8592] = 21, + [7907] = 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(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2049), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(765), 1, + STATE(958), 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__, @@ -66362,18 +66661,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1381), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2051), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -66392,13 +66679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66415,7 +66702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8694] = 21, + [8009] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -66424,15 +66711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(766), 1, + STATE(792), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -66443,16 +66730,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -66473,13 +66760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66496,25 +66783,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8796] = 21, + [8111] = 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(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2049), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(767), 1, + STATE(691), 1, sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -66524,18 +66823,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1381), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2051), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -66554,13 +66841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66577,7 +66864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8898] = 21, + [8213] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -66586,15 +66873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(700), 1, sym_string_literal, - STATE(768), 1, + STATE(793), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -66605,16 +66892,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -66635,13 +66922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66658,37 +66945,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9000] = 21, + [8315] = 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(1712), 1, + ACTIONS(1714), 1, + anon_sym_sizeof, + ACTIONS(2047), 1, sym_identifier, - STATE(654), 1, - sym_string_literal, - STATE(958), 1, + ACTIONS(2049), 1, + anon_sym_LPAREN2, + STATE(691), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -66698,6 +66973,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1710), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1712), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2053), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -66716,13 +67003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66739,7 +67026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9102] = 21, + [8417] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -66752,11 +67039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1071), 1, + STATE(1074), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -66797,13 +67084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66820,7 +67107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9204] = 21, + [8519] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -66829,16 +67116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(2047), 1, sym_identifier, ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(684), 1, - sym_string_literal, - STATE(769), 1, + STATE(689), 1, sym_expression, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -66848,16 +67135,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -66878,13 +67165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66901,37 +67188,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9306] = 21, + [8621] = 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(1712), 1, + ACTIONS(1714), 1, + anon_sym_sizeof, + ACTIONS(2047), 1, sym_identifier, - STATE(654), 1, - sym_string_literal, - STATE(688), 1, + ACTIONS(2115), 1, + anon_sym_LPAREN2, + STATE(690), 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, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -66941,6 +67216,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1710), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1712), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2053), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -66959,13 +67246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -66982,9 +67269,11 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9408] = 21, + [8723] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(83), 1, anon_sym_sizeof, ACTIONS(87), 1, @@ -66993,13 +67282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2113), 1, - anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(691), 1, + STATE(1059), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67040,13 +67327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67063,25 +67350,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9510] = 21, + [8825] = 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(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2049), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(770), 1, + STATE(699), 1, sym_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(81), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67091,18 +67390,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1381), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2051), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67121,13 +67408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67144,25 +67431,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9612] = 21, + [8927] = 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(681), 1, - sym_expression, - STATE(684), 1, + STATE(660), 1, sym_string_literal, + STATE(1036), 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__, @@ -67172,18 +67471,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67202,13 +67489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67225,25 +67512,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9714] = 21, + [9029] = 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(688), 1, + STATE(973), 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__, @@ -67253,18 +67552,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67283,13 +67570,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67306,7 +67593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9816] = 21, + [9131] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -67315,16 +67602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2115), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(691), 1, + STATE(693), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67334,16 +67624,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -67364,13 +67651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67387,7 +67674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9918] = 21, + [9233] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67400,11 +67687,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1016), 1, + STATE(689), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67445,13 +67732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67468,37 +67755,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10020] = 21, + [9335] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(1051), 1, + STATE(691), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67508,6 +67786,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2067), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67526,13 +67813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67549,7 +67836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10122] = 21, + [9437] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -67558,19 +67845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(654), 1, - sym_string_literal, - STATE(685), 1, + STATE(693), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -67586,7 +67870,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -67607,13 +67894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67630,37 +67917,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10224] = 21, + [9539] = 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(1712), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(960), 1, + STATE(1035), 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__, @@ -67670,6 +67945,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67688,13 +67975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67711,37 +67998,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10326] = 21, + [9641] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(962), 1, + STATE(811), 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__, @@ -67751,6 +68029,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2067), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67769,13 +68056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67792,37 +68079,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10428] = 21, + [9743] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(998), 1, + STATE(689), 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__, @@ -67832,6 +68110,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2067), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67850,13 +68137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67873,37 +68160,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10530] = 21, + [9845] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2117), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(1001), 1, + STATE(690), 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__, @@ -67913,6 +68191,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2067), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -67931,13 +68218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -67954,7 +68241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10632] = 21, + [9947] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67967,11 +68254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(965), 1, + STATE(970), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -68012,13 +68299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68035,37 +68322,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10734] = 21, + [10049] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, - sym_string_literal, - STATE(959), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, + anon_sym_LPAREN2, + STATE(699), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68075,6 +68350,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2057), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -68093,13 +68380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68116,7 +68403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10836] = 21, + [10151] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -68129,11 +68416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(681), 1, + STATE(959), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -68174,13 +68461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68197,37 +68484,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10938] = 21, + [10253] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, - sym_string_literal, - STATE(963), 1, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2055), 1, + anon_sym_LPAREN2, + STATE(691), 1, sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68237,6 +68512,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2057), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -68255,13 +68542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68278,7 +68565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11040] = 21, + [10355] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68287,16 +68574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(686), 1, + STATE(808), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68312,10 +68602,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68336,13 +68623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68359,7 +68646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11142] = 21, + [10457] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68368,16 +68655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(681), 1, - sym_expression, - STATE(684), 1, + STATE(660), 1, sym_string_literal, + STATE(699), 1, + sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68393,10 +68683,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68417,13 +68704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68440,7 +68727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11244] = 21, + [10559] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68449,19 +68736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1393), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2055), 1, anon_sym_LPAREN2, - STATE(654), 1, - sym_string_literal, - STATE(787), 1, + STATE(689), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68477,7 +68761,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1391), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68498,13 +68785,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68521,7 +68808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11346] = 21, + [10661] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -68534,11 +68821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(967), 1, + STATE(978), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -68579,13 +68866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68602,7 +68889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11448] = 21, + [10763] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68611,16 +68898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(688), 1, + STATE(812), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68636,10 +68926,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68660,13 +68947,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68683,7 +68970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11550] = 21, + [10865] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68692,16 +68979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2117), 1, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(691), 1, + STATE(814), 1, sym_expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -68717,10 +69007,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68741,13 +69028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68764,7 +69051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11652] = 21, + [10967] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68773,15 +69060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(815), 1, + STATE(816), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -68795,13 +69082,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68822,13 +69109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68845,7 +69132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11754] = 21, + [11069] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -68854,15 +69141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(686), 1, + STATE(813), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -68876,13 +69163,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -68903,13 +69190,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -68926,190 +69213,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11856] = 21, + [11171] = 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(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1393), 1, - anon_sym_sizeof, - ACTIONS(2073), 1, - anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(816), 1, + STATE(980), 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(1389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 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(674), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(661), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [11958] = 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(1387), 1, - sym_identifier, - ACTIONS(1393), 1, - anon_sym_sizeof, - ACTIONS(2073), 1, - anon_sym_LPAREN2, - STATE(654), 1, - sym_string_literal, - STATE(817), 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(1389), 2, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2075), 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(674), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(661), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [12060] = 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(1387), 1, - sym_identifier, - ACTIONS(1393), 1, - anon_sym_sizeof, - ACTIONS(2073), 1, - anon_sym_LPAREN2, - STATE(654), 1, - sym_string_literal, - STATE(785), 1, - sym_expression, 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__, @@ -69119,15 +69253,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1391), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2075), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -69146,13 +69271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69169,7 +69294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12162] = 21, + [11273] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69178,15 +69303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(818), 1, + STATE(817), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -69200,13 +69325,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69227,13 +69352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69250,7 +69375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12264] = 21, + [11375] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69259,19 +69384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, - sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2047), 1, + sym_identifier, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(800), 1, + STATE(953), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -69281,13 +69403,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69308,13 +69433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69331,7 +69456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12366] = 21, + [11477] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -69344,11 +69469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1062), 1, + STATE(962), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -69389,13 +69514,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69412,28 +69537,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12468] = 21, + [11579] = 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(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1393), 1, - anon_sym_sizeof, - ACTIONS(2073), 1, - anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(796), 1, + STATE(1080), 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__, @@ -69443,15 +69577,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1391), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2075), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -69470,13 +69595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69493,7 +69618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12570] = 21, + [11681] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69502,15 +69627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1387), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2065), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(813), 1, + STATE(818), 1, sym_expression, ACTIONS(25), 2, anon_sym_STAR, @@ -69524,13 +69649,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1379), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(1381), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69551,13 +69676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69574,7 +69699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12672] = 21, + [11783] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69583,15 +69708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1765), 1, - sym_identifier, - ACTIONS(1771), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(1787), 1, + ACTIONS(2047), 1, + sym_identifier, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(1041), 1, + STATE(942), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -69602,16 +69727,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1767), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1791), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1801), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -69632,13 +69757,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69655,25 +69780,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12774] = 21, + [11885] = 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(1765), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(1787), 1, - anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1046), 1, + STATE(996), 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__, @@ -69683,18 +69820,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1791), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -69713,13 +69838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69736,7 +69861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12876] = 21, + [11987] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69751,9 +69876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(850), 1, + STATE(1014), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -69794,13 +69919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69817,7 +69942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12978] = 21, + [12089] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69832,9 +69957,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1047), 1, + STATE(1015), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -69875,13 +70000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69898,7 +70023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13080] = 21, + [12191] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69913,9 +70038,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1048), 1, + STATE(879), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -69956,13 +70081,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -69979,7 +70104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13182] = 21, + [12293] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -69994,9 +70119,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1026), 1, + STATE(1016), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -70037,13 +70162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70060,7 +70185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13284] = 21, + [12395] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70075,9 +70200,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1003), 1, + STATE(1017), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -70118,13 +70243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70141,7 +70266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13386] = 21, + [12497] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70156,9 +70281,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1004), 1, + STATE(1018), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -70199,13 +70324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70222,7 +70347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13488] = 21, + [12599] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70237,9 +70362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1005), 1, + STATE(1019), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -70280,13 +70405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70303,7 +70428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13590] = 21, + [12701] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70318,9 +70443,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1006), 1, + STATE(1020), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -70361,13 +70486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70384,7 +70509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13692] = 21, + [12803] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70399,9 +70524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1007), 1, + STATE(1021), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -70442,13 +70567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70465,7 +70590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13794] = 21, + [12905] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70474,19 +70599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(814), 1, + STATE(1022), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70496,96 +70618,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2075), 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(674), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(661), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [13896] = 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(1712), 1, - sym_identifier, - STATE(654), 1, - sym_string_literal, - STATE(996), 1, - sym_expression, - ACTIONS(21), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(1801), 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, @@ -70604,13 +70648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70627,7 +70671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13998] = 21, + [13007] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70642,9 +70686,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1011), 1, + STATE(1023), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -70685,13 +70729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70708,7 +70752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14100] = 21, + [13109] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70717,16 +70761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1765), 1, - sym_identifier, - ACTIONS(1771), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(1787), 1, + ACTIONS(2047), 1, + sym_identifier, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(654), 1, - sym_string_literal, - STATE(1002), 1, + STATE(699), 1, sym_expression, + STATE(700), 1, + sym_string_literal, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -70736,16 +70780,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1767), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1791), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1801), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -70766,13 +70810,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70789,7 +70833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14202] = 21, + [13211] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70798,15 +70842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, - sym_identifier, - ACTIONS(1690), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(2083), 1, + ACTIONS(2047), 1, + sym_identifier, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(854), 1, + STATE(955), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -70817,16 +70861,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1686), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1688), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1791), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2085), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -70847,13 +70891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70870,25 +70914,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14304] = 21, + [13313] = 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(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1690), 1, - anon_sym_sizeof, - ACTIONS(2083), 1, - anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(828), 1, + STATE(998), 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__, @@ -70898,18 +70954,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1686), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1688), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1791), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2085), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -70928,13 +70972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -70951,7 +70995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14406] = 21, + [13415] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -70960,15 +71004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1690), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2083), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(855), 1, + STATE(1026), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -70979,16 +71023,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1686), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1688), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2085), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71009,13 +71053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71032,7 +71076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14508] = 21, + [13517] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71041,15 +71085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1690), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2083), 1, + ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(856), 1, + STATE(1028), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71060,16 +71104,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1686), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1688), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2085), 2, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71090,13 +71134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71113,7 +71157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14610] = 21, + [13619] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71122,15 +71166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(857), 1, + STATE(882), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71171,13 +71215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71194,7 +71238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14712] = 21, + [13721] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71203,15 +71247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(858), 1, + STATE(883), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71252,13 +71296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71275,7 +71319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14814] = 21, + [13823] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71284,15 +71328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, - sym_identifier, - ACTIONS(1690), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(2083), 1, + ACTIONS(2047), 1, + sym_identifier, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(859), 1, + STATE(943), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71303,16 +71347,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1686), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1688), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1791), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2085), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -71333,13 +71377,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71356,7 +71400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14916] = 21, + [13925] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71365,15 +71409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(860), 1, + STATE(885), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71414,13 +71458,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71437,7 +71481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15018] = 21, + [14027] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71446,15 +71490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(861), 1, + STATE(886), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71495,13 +71539,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71518,7 +71562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15120] = 21, + [14129] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71527,15 +71571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(863), 1, + STATE(887), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71576,13 +71620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71599,7 +71643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15222] = 21, + [14231] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71608,15 +71652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(864), 1, + STATE(888), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71657,13 +71701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71680,7 +71724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15324] = 21, + [14333] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71689,15 +71733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(873), 1, + STATE(889), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71738,13 +71782,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71761,7 +71805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15426] = 21, + [14435] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71770,15 +71814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(875), 1, + STATE(872), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71819,13 +71863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71842,7 +71886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15528] = 21, + [14537] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -71851,15 +71895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2119), 1, + ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(876), 1, + STATE(874), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -71900,13 +71944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -71923,37 +71967,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15630] = 21, + [14639] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2083), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(966), 1, + STATE(877), 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__, @@ -71963,87 +71995,18 @@ static const uint16_t ts_small_parse_table[] = { 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(820), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(661), 16, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [15732] = 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(1712), 1, - sym_identifier, - STATE(654), 1, - sym_string_literal, - STATE(1054), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(2085), 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, @@ -72062,13 +72025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72085,37 +72048,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15834] = 21, + [14741] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2083), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(956), 1, + STATE(890), 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__, @@ -72125,6 +72076,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2085), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72143,13 +72106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72166,7 +72129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15936] = 21, + [14843] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72175,19 +72138,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1690), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2083), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(681), 1, + STATE(873), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72197,13 +72157,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2085), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -72224,13 +72187,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72247,7 +72210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16038] = 21, + [14945] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72256,15 +72219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1385), 1, - anon_sym_sizeof, - ACTIONS(1387), 1, + ACTIONS(1375), 1, sym_identifier, - ACTIONS(2049), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2119), 1, anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(685), 1, + STATE(875), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -72275,16 +72238,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1379), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1381), 2, + ACTIONS(1688), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2041), 2, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2051), 2, + ACTIONS(2085), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -72305,13 +72268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72328,37 +72291,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16140] = 21, + [15047] = 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(1712), 1, + ACTIONS(1714), 1, + anon_sym_sizeof, + ACTIONS(2047), 1, sym_identifier, - STATE(654), 1, + ACTIONS(2049), 1, + anon_sym_LPAREN2, + STATE(700), 1, sym_string_literal, - STATE(1064), 1, + STATE(944), 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__, @@ -72368,6 +72319,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1710), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1712), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2053), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72386,13 +72349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72409,7 +72372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16242] = 21, + [15149] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72422,11 +72385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1712), 1, + ACTIONS(1708), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1066), 1, + STATE(1051), 1, sym_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72467,13 +72430,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72490,7 +72453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16344] = 21, + [15251] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72499,19 +72462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, - sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2047), 1, + sym_identifier, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(688), 1, + STATE(945), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72521,13 +72481,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -72548,13 +72511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72571,7 +72534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16446] = 21, + [15353] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72586,9 +72549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(1787), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(873), 1, + STATE(1079), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -72629,13 +72592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72652,25 +72615,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16548] = 21, + [15455] = 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(1387), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1690), 1, - anon_sym_sizeof, - ACTIONS(2083), 1, - anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(874), 1, + STATE(1068), 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__, @@ -72680,18 +72655,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1686), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1688), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1791), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2085), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72710,13 +72673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72733,7 +72696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16650] = 21, + [15557] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72742,15 +72705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1765), 1, - sym_identifier, - ACTIONS(1771), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(1787), 1, + ACTIONS(2047), 1, + sym_identifier, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(875), 1, + STATE(946), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -72761,16 +72724,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1767), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1791), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1801), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -72791,13 +72754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72814,25 +72777,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16752] = 21, + [15659] = 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(1765), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(1771), 1, - anon_sym_sizeof, - ACTIONS(2121), 1, - anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(876), 1, + STATE(1070), 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__, @@ -72842,18 +72817,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1791), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -72872,13 +72835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72895,7 +72858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16854] = 21, + [15761] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72904,19 +72867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, - sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(2123), 1, + ACTIONS(2047), 1, + sym_identifier, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(691), 1, + STATE(947), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -72926,13 +72886,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -72953,13 +72916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -72976,7 +72939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16956] = 21, + [15863] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -72985,15 +72948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1765), 1, - sym_identifier, - ACTIONS(1771), 1, + ACTIONS(1714), 1, anon_sym_sizeof, - ACTIONS(1787), 1, + ACTIONS(2047), 1, + sym_identifier, + ACTIONS(2049), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(700), 1, sym_string_literal, - STATE(1057), 1, + STATE(948), 1, sym_expression, ACTIONS(91), 2, anon_sym_asm, @@ -73004,16 +72967,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1767), 2, + ACTIONS(1710), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1712), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1791), 2, + ACTIONS(2051), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1801), 2, + ACTIONS(2053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -73034,13 +72997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(893), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73057,37 +73020,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17058] = 21, + [15965] = 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(1712), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(961), 1, + STATE(890), 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__, @@ -73097,6 +73048,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73115,13 +73078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73138,37 +73101,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17160] = 21, + [16067] = 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(1712), 1, + ACTIONS(1375), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1690), 1, + anon_sym_sizeof, + ACTIONS(2083), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(1053), 1, + STATE(892), 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__, @@ -73178,6 +73129,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1688), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2085), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73196,13 +73159,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(669), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73219,37 +73182,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17262] = 21, + [16169] = 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(1712), 1, + ACTIONS(1765), 1, sym_identifier, - STATE(654), 1, + ACTIONS(1771), 1, + anon_sym_sizeof, + ACTIONS(1787), 1, + anon_sym_LPAREN2, + STATE(660), 1, sym_string_literal, - STATE(1050), 1, + STATE(873), 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__, @@ -73259,6 +73210,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73277,13 +73240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73300,7 +73263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17364] = 21, + [16271] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -73309,19 +73272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(159), 1, sym_number_literal, - ACTIONS(1387), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1771), 1, anon_sym_sizeof, - ACTIONS(2073), 1, + ACTIONS(2121), 1, anon_sym_LPAREN2, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(798), 1, + STATE(875), 1, sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, @@ -73331,13 +73291,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1389), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1391), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2075), 2, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(85), 5, @@ -73358,13 +73321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(674), 5, + STATE(897), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73381,37 +73344,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17466] = 21, + [16373] = 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(1712), 1, + ACTIONS(1714), 1, + anon_sym_sizeof, + ACTIONS(2047), 1, sym_identifier, - STATE(654), 1, + ACTIONS(2049), 1, + anon_sym_LPAREN2, + STATE(700), 1, sym_string_literal, - STATE(955), 1, + STATE(949), 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__, @@ -73421,6 +73372,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, + ACTIONS(1710), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1712), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2053), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73439,13 +73402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(820), 5, + STATE(809), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73462,25 +73425,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17568] = 21, + [16475] = 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(1710), 1, - anon_sym_sizeof, - ACTIONS(2037), 1, + ACTIONS(1708), 1, sym_identifier, - ACTIONS(2039), 1, - anon_sym_LPAREN2, - STATE(684), 1, + STATE(660), 1, sym_string_literal, - STATE(937), 1, + STATE(1081), 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__, @@ -73490,18 +73465,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(161), 2, sym_true, sym_false, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2041), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2043), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 5, anon_sym___alignof__, anon_sym___alignof, @@ -73520,13 +73483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(824), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(661), 16, + STATE(680), 16, sym__string, sym_conditional_expression, sym_assignment_expression, @@ -73540,509 +73503,348 @@ static const uint16_t ts_small_parse_table[] = { sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17670] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2125), 1, - sym_identifier, - STATE(618), 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(2129), 16, - 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_EQ, - anon_sym_DOT, - ACTIONS(2127), 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, - [17741] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 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(2135), 16, - 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_EQ, - anon_sym_DOT, - ACTIONS(2133), 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, - [17812] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2137), 1, - sym_identifier, - STATE(618), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2144), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2142), 16, - 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_EQ, - anon_sym_DOT, - ACTIONS(2140), 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, - [17883] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(617), 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(1724), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(1718), 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, - [17951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16577] = 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(1375), 1, sym_identifier, - ACTIONS(2149), 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, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 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, + STATE(660), 1, + sym_string_literal, + STATE(819), 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(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + 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, - [18014] = 3, + STATE(669), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(680), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16679] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2151), 17, - aux_sym_preproc_elif_token1, + 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(1708), 1, + sym_identifier, + STATE(660), 1, + sym_string_literal, + STATE(1043), 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_SLASH, - anon_sym_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_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2153), 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, + ACTIONS(81), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + 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, - [18077] = 3, + STATE(824), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(680), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16781] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1375), 1, + sym_identifier, + ACTIONS(1387), 1, + anon_sym_sizeof, + ACTIONS(2065), 1, + anon_sym_LPAREN2, + STATE(660), 1, + sym_string_literal, + STATE(815), 1, + sym_expression, + ACTIONS(25), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2157), 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, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(161), 2, + sym_true, + sym_false, + ACTIONS(1379), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1381), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2067), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18139] = 3, + 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(669), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(680), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16883] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 20, - aux_sym_preproc_elif_token1, + ACTIONS(87), 1, + anon_sym_offsetof, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(159), 1, + sym_number_literal, + ACTIONS(1375), 1, + sym_identifier, + ACTIONS(1393), 1, + anon_sym_sizeof, + ACTIONS(2123), 1, + anon_sym_LPAREN2, + STATE(690), 1, + sym_expression, + STATE(700), 1, + sym_string_literal, + 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(1389), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1391), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2051), 2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2161), 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, + ACTIONS(2057), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18201] = 3, + 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(669), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(680), 16, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 20, + ACTIONS(2125), 1, + sym_identifier, + STATE(617), 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(2129), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -74057,13 +73859,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, - sym_identifier, - ACTIONS(2165), 34, + ACTIONS(2127), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -74079,9 +73877,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, @@ -74096,79 +73893,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18263] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2177), 1, - anon_sym___attribute__, - ACTIONS(2180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2183), 1, - anon_sym___declspec, - STATE(707), 1, - sym_alignas_qualifier, - ACTIONS(2186), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2169), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(625), 7, - sym__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(2171), 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(2174), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(2167), 17, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [18341] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [17056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 20, + ACTIONS(2131), 1, + sym_identifier, + STATE(617), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2138), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2136), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -74183,13 +73924,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, - sym_identifier, - ACTIONS(2191), 34, + ACTIONS(2134), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -74205,9 +73942,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, @@ -74224,10 +73960,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18403] = 3, + [17127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 20, + ACTIONS(2141), 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(2145), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -74242,13 +73989,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, - sym_identifier, - ACTIONS(2195), 34, + ACTIONS(2143), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -74264,9 +74007,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, @@ -74283,10 +74025,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18465] = 3, + [17198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 20, + STATE(618), 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(1724), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -74301,13 +74051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2199), 34, + ACTIONS(1718), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -74323,9 +74070,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, @@ -74342,10 +74088,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18527] = 3, + [17266] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2201), 20, + ACTIONS(2157), 1, + anon_sym___attribute__, + ACTIONS(2160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2163), 1, + anon_sym___declspec, + STATE(709), 1, + sym_alignas_qualifier, + ACTIONS(2166), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2149), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(620), 7, + sym__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(2151), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2154), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2147), 17, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [17345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -74360,13 +74174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2203), 34, + ACTIONS(2171), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -74382,9 +74193,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, @@ -74401,10 +74211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18589] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [17408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 20, + ACTIONS(2173), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -74419,13 +74234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2207), 34, + ACTIONS(2175), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -74441,9 +74253,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, @@ -74460,10 +74271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18651] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [17471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 20, + ACTIONS(2177), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -74484,7 +74300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2211), 34, + ACTIONS(2179), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -74519,10 +74335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18713] = 3, + [17533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 20, + ACTIONS(2181), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -74543,7 +74359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2215), 34, + ACTIONS(2183), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -74578,161 +74394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18775] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 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(582), 1, - anon_sym_LBRACE, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - STATE(256), 1, - sym_compound_statement, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(651), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 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, - [18874] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 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(582), 1, - anon_sym_LBRACE, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - STATE(300), 1, - sym_compound_statement, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(633), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 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, - [18973] = 22, + [17595] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -74747,40 +74409,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(131), 1, - anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1777), 1, + anon_sym_RPAREN, ACTIONS(1849), 1, sym_identifier, - STATE(141), 1, - sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1181), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(651), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1538), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -74788,16 +74450,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -74809,63 +74461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19072] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 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(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - STATE(117), 1, - sym_compound_statement, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(639), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -74875,18 +74471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 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, - [19171] = 22, + anon_sym__Nonnull, + [17695] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -74907,20 +74493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(290), 1, + STATE(256), 1, sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(651), 2, + STATE(637), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -74928,13 +74514,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -74942,16 +74528,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -74963,63 +74539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19270] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 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(376), 1, - anon_sym_LBRACE, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - STATE(294), 1, - sym_compound_statement, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(645), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -75029,18 +74549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 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, - [19369] = 22, + anon_sym__Nonnull, + [17795] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -75055,103 +74565,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - STATE(131), 1, - sym_compound_statement, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(651), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 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, - [19468] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(41), 1, + ACTIONS(582), 1, anon_sym_LBRACE, - 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(1115), 1, anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(380), 1, + STATE(289), 1, sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(650), 2, + STATE(629), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -75159,13 +74592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75173,16 +74606,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75194,7 +74617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19567] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [17895] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -75215,20 +74649,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(292), 1, + STATE(296), 1, sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(637), 2, + STATE(652), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -75236,13 +74670,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75250,16 +74684,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75271,15 +74695,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19666] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [17995] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(51), 1, sym_primitive_type, ACTIONS(53), 1, @@ -75288,24 +74721,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, + ACTIONS(582), 1, + anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(357), 1, + STATE(300), 1, sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(651), 2, + STATE(652), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -75313,13 +74748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75327,16 +74762,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75348,7 +74773,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19765] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [18095] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -75363,40 +74799,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, + ACTIONS(582), 1, + anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1775), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1777), 1, - anon_sym_RPAREN, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(303), 1, + sym_compound_statement, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1135), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1630), 2, - sym_variadic_parameter, - sym_parameter_declaration, + STATE(635), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75404,16 +74840,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75425,7 +74851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19864] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [18195] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -75446,20 +74883,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(375), 1, + STATE(350), 1, sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(642), 2, + STATE(632), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -75467,13 +74904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75481,16 +74918,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75502,13 +74929,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [19963] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [18295] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(51), 1, sym_primitive_type, ACTIONS(53), 1, @@ -75517,26 +74957,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(376), 1, - anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(282), 1, + STATE(319), 1, sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(651), 2, + STATE(652), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -75544,13 +74982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75558,16 +74996,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75579,7 +75007,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20062] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [18395] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -75594,26 +75033,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(582), 1, + ACTIONS(131), 1, anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(286), 1, + STATE(126), 1, sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(649), 2, + STATE(640), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -75621,13 +75060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75635,16 +75074,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75656,7 +75085,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20161] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [18495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 20, + 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_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, + sym_identifier, + ACTIONS(2187), 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, + [18557] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -75671,26 +75170,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(131), 1, + ACTIONS(582), 1, anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(123), 1, + STATE(259), 1, sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(635), 2, + STATE(652), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -75698,13 +75197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75712,16 +75211,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75733,7 +75222,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20260] = 23, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [18657] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -75748,41 +75248,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, + ACTIONS(376), 1, + anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1775), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2217), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(2219), 1, - anon_sym_RPAREN, - STATE(707), 1, + STATE(298), 1, + sym_compound_statement, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1135), 1, + STATE(1113), 1, sym__declaration_specifiers, - STATE(1475), 1, - sym_variadic_parameter, - STATE(1630), 1, - sym_parameter_declaration, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(628), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75790,16 +75289,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75811,7 +75300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20361] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [18757] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -75826,26 +75326,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(582), 1, + ACTIONS(376), 1, anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(297), 1, + STATE(287), 1, sym_compound_statement, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(651), 2, + STATE(652), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -75853,13 +75353,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75867,16 +75367,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75888,15 +75378,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20460] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [18857] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(51), 1, sym_primitive_type, ACTIONS(53), 1, @@ -75907,36 +75406,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2189), 1, sym_identifier, - STATE(373), 1, - sym_compound_statement, - STATE(707), 1, + ACTIONS(2191), 1, + anon_sym_RPAREN, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1181), 1, sym__declaration_specifiers, + STATE(1483), 1, + sym_variadic_parameter, + STATE(1538), 1, + sym_parameter_declaration, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(651), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75944,16 +75446,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -75965,53 +75457,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20559] = 21, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [18959] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym_identifier, - ACTIONS(2230), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2233), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2236), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2239), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(2247), 1, + ACTIONS(51), 1, sym_primitive_type, - ACTIONS(2250), 1, + ACTIONS(53), 1, anon_sym_enum, - ACTIONS(2253), 1, + ACTIONS(55), 1, anon_sym_struct, - ACTIONS(2256), 1, + ACTIONS(57), 1, anon_sym_union, - STATE(707), 1, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(328), 1, + sym_compound_statement, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1106), 1, + STATE(1113), 1, sym__declaration_specifiers, - ACTIONS(2244), 2, + ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(651), 2, + STATE(652), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(2241), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76019,17 +75524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2224), 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(2227), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -76040,7 +75535,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20655] = 22, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [19059] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -76055,39 +75561,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, + ACTIONS(131), 1, + anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1775), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2259), 1, + ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(117), 1, + sym_compound_statement, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1135), 1, + STATE(1113), 1, sym__declaration_specifiers, - STATE(1651), 1, - sym_parameter_declaration, - STATE(1662), 1, - sym_variadic_parameter, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(652), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76095,16 +75602,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -76116,7 +75613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20753] = 21, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [19159] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -76131,38 +75639,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, + ACTIONS(131), 1, + anon_sym_LBRACE, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1775), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(120), 1, + sym_compound_statement, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1135), 1, + STATE(1113), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1651), 2, - sym_variadic_parameter, - sym_parameter_declaration, + STATE(645), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76170,16 +75680,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -76191,20 +75691,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20849] = 6, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [19259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, - sym_identifier, - STATE(617), 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(2265), 15, + ACTIONS(2193), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -76218,12 +75720,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, - ACTIONS(2263), 29, + sym_identifier, + ACTIONS(2195), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76232,8 +75742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -76250,10 +75761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [20914] = 3, + [19321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 17, + ACTIONS(2197), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76268,333 +75779,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2269), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [20973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1704), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1702), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [21032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2273), 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(2271), 42, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [21091] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2282), 1, - anon_sym_static, - STATE(700), 1, - sym_alignas_qualifier, - ACTIONS(2285), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(658), 2, - sym_type_qualifier, - aux_sym_array_declarator_repeat1, - ACTIONS(2279), 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(2275), 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(2277), 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, - [21160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2267), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [21219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1700), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1698), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, sym_identifier, - [21278] = 3, + ACTIONS(2199), 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, + [19383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1724), 17, + ACTIONS(2201), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76609,10 +75838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(1718), 33, + ACTIONS(2203), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76628,8 +75860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -76646,10 +75879,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21336] = 3, + [19445] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 17, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 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(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(134), 1, + sym_compound_statement, + STATE(709), 1, + sym_alignas_qualifier, + STATE(715), 1, + sym_type_specifier, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1113), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(652), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(764), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [19545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76664,10 +75975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2290), 33, + ACTIONS(2207), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76683,8 +75997,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -76701,10 +76016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21394] = 3, + [19607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 17, + ACTIONS(2209), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76719,10 +76034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2294), 33, + ACTIONS(2211), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76738,8 +76056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -76756,10 +76075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21452] = 3, + [19669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2296), 17, + ACTIONS(2213), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76774,10 +76093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2298), 33, + ACTIONS(2215), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76793,8 +76115,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -76811,10 +76134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21510] = 3, + [19731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 17, + ACTIONS(2217), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76829,10 +76152,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2302), 33, + ACTIONS(2219), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76848,8 +76174,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -76865,121 +76192,549 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21568] = 3, + anon_sym_DASH_GT, + [19793] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, + 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(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(321), 1, + sym_compound_statement, + STATE(709), 1, + sym_alignas_qualifier, + STATE(715), 1, + sym_type_specifier, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1113), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(639), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(764), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [19893] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 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(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2221), 1, + sym_identifier, + STATE(709), 1, + sym_alignas_qualifier, + STATE(715), 1, + sym_type_specifier, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1181), 1, + sym__declaration_specifiers, + STATE(1657), 1, + sym_variadic_parameter, + STATE(1671), 1, + sym_parameter_declaration, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(764), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [19992] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2223), 1, + sym_identifier, + ACTIONS(2232), 1, + anon_sym___attribute__, + ACTIONS(2235), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2238), 1, + anon_sym___declspec, + ACTIONS(2241), 1, + anon_sym_LBRACE, + ACTIONS(2249), 1, + sym_primitive_type, + ACTIONS(2252), 1, + anon_sym_enum, + ACTIONS(2255), 1, + anon_sym_struct, + ACTIONS(2258), 1, + anon_sym_union, + STATE(709), 1, + sym_alignas_qualifier, + STATE(715), 1, + sym_type_specifier, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1113), 1, + sym__declaration_specifiers, + ACTIONS(2246), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(652), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2243), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(764), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__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(2226), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2229), 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, + [20089] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 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(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1849), 1, + sym_identifier, + STATE(709), 1, + sym_alignas_qualifier, + STATE(715), 1, + sym_type_specifier, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1181), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1671), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(764), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [20186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 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(2261), 43, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [20246] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_static, + STATE(697), 1, + sym_alignas_qualifier, + ACTIONS(2275), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(655), 2, + sym_type_qualifier, + aux_sym_array_declarator_repeat1, + ACTIONS(2269), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2265), 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(2267), 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, + [20316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1700), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2306), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2308), 17, - aux_sym_preproc_elif_token1, + 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(1698), 30, 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_EQ, - anon_sym_DOT, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - ACTIONS(2310), 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, + [20375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 21, 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_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21684] = 3, + 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(2278), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [20434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 17, + ACTIONS(2278), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76997,7 +76752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2314), 33, + ACTIONS(2280), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77013,6 +76768,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, @@ -77031,66 +76787,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21742] = 3, + [20493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2316), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1704), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2318), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21800] = 3, + 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(1702), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [20552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 17, - aux_sym_preproc_elif_token1, + ACTIONS(2282), 1, + sym_identifier, + STATE(618), 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(2286), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -77106,15 +76872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(2322), 33, + ACTIONS(2284), 29, 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, @@ -77141,65 +76902,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21858] = 3, + [20617] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, + ACTIONS(37), 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(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(2326), 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, - [21916] = 3, + STATE(709), 1, + sym_alignas_qualifier, + STATE(715), 1, + sym_type_specifier, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1191), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(764), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [20707] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2328), 17, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 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(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1849), 1, + sym_identifier, + STATE(709), 1, + sym_alignas_qualifier, + STATE(715), 1, + sym_type_specifier, + STATE(762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1226), 1, + sym__declaration_specifiers, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(764), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(698), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [20797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2288), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77217,7 +77065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2330), 33, + ACTIONS(2290), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77251,10 +77099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21974] = 3, + [20855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 17, + ACTIONS(2292), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77272,7 +77120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2334), 33, + ACTIONS(2294), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77306,10 +77154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22032] = 3, + [20913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1724), 17, + ACTIONS(2296), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77327,7 +77175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1718), 33, + ACTIONS(2298), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77361,10 +77209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22090] = 3, + [20971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 17, + ACTIONS(2300), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77382,7 +77230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2338), 33, + ACTIONS(2302), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77416,10 +77264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22148] = 3, + [21029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2340), 17, + ACTIONS(2304), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77437,7 +77285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2342), 33, + ACTIONS(2306), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77471,10 +77319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22206] = 3, + [21087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 17, + ACTIONS(2308), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77492,7 +77340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2346), 33, + ACTIONS(2310), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77526,7 +77374,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22264] = 19, + [21145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(1718), 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, + [21203] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -77545,13 +77448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1195), 1, + STATE(1228), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, @@ -77561,13 +77464,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77575,16 +77478,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -77596,10 +77489,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22353] = 3, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [21293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 16, + ACTIONS(2312), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77615,8 +77519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2350), 33, + ACTIONS(2314), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -77631,9 +77537,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, @@ -77648,12 +77554,11 @@ 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, - [22410] = 3, + [21351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2352), 16, + ACTIONS(2316), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77669,8 +77574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2354), 33, + ACTIONS(2318), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -77685,9 +77592,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, @@ -77702,21 +77609,11 @@ 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, - [22467] = 7, + [21409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2356), 16, + ACTIONS(2320), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77732,14 +77629,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2358), 28, + ACTIONS(2322), 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, @@ -77748,6 +77648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -77762,80 +77664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [22532] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 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(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1226), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 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, - [22621] = 3, + anon_sym_DASH_GT, + [21467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 16, + ACTIONS(2324), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77851,8 +77684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2368), 33, + ACTIONS(2326), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -77867,9 +77702,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, @@ -77884,20 +77719,11 @@ 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, - [22678] = 5, + [21525] = 3, ACTIONS(3), 1, sym_comment, - STATE(617), 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(2265), 15, + ACTIONS(2328), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77911,10 +77737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2263), 28, + ACTIONS(2330), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -77926,7 +77756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -77940,24 +77774,11 @@ 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, - [22739] = 8, + [21583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2370), 16, + ACTIONS(2332), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77973,14 +77794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2372), 26, + ACTIONS(2334), 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, @@ -77989,6 +77813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -78001,81 +77827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22806] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2376), 16, - 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_EQ, - sym_identifier, - ACTIONS(2378), 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, - [22873] = 8, + anon_sym_DASH_GT, + [21641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2380), 16, + ACTIONS(2336), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78091,14 +77849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2382), 26, + ACTIONS(2338), 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, @@ -78107,6 +77868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -78119,22 +77882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22940] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2384), 16, + anon_sym_DASH_GT, + [21699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2340), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78150,14 +77904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2386), 26, + ACTIONS(2342), 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, @@ -78166,6 +77923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -78178,7 +77937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23007] = 19, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21757] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -78197,13 +77959,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1217), 1, + STATE(1207), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, @@ -78213,13 +77975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78227,16 +77989,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -78248,10 +78000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23096] = 3, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [21847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2388), 16, + ACTIONS(1724), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78267,8 +78030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2390), 33, + ACTIONS(1718), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -78283,9 +78048,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, @@ -78300,126 +78065,8 @@ 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, - [23153] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 16, - 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_EQ, - sym_identifier, - ACTIONS(2394), 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, - [23220] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2396), 1, - anon_sym_EQ, - STATE(617), 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(2398), 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(1724), 14, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - sym_identifier, - ACTIONS(1718), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [23285] = 19, + [21905] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -78438,13 +78085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1211), 1, + STATE(1202), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, @@ -78454,13 +78101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78468,16 +78115,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -78489,7 +78126,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23374] = 19, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [21995] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -78508,13 +78156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1232), 1, + STATE(1231), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, @@ -78524,13 +78172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78538,16 +78186,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -78559,7 +78197,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23463] = 19, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [22085] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -78578,13 +78227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1231), 1, + STATE(1229), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, @@ -78594,13 +78243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78608,16 +78257,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -78629,7 +78268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23552] = 19, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [22175] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -78648,13 +78298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(713), 1, + STATE(715), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1228), 1, + STATE(1197), 1, sym__declaration_specifiers, ACTIONS(49), 2, anon_sym_alignas, @@ -78664,13 +78314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(701), 7, + STATE(698), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78678,16 +78328,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -78699,90 +78339,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23641] = 19, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [22265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2344), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2346), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [22323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 16, + 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_EQ, + sym_identifier, + ACTIONS(2350), 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, + [22380] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2352), 16, + 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_EQ, + sym_identifier, + ACTIONS(2354), 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, + [22447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2364), 16, + 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_EQ, + sym_identifier, + ACTIONS(2366), 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, + [22504] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2368), 16, + 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_EQ, + sym_identifier, + ACTIONS(2370), 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, + [22571] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2372), 16, + 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(37), 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(1115), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, + anon_sym_EQ, sym_identifier, - STATE(707), 1, - sym_alignas_qualifier, - STATE(713), 1, - sym_type_specifier, - STATE(771), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1225), 1, - sym__declaration_specifiers, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(701), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 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, - [23730] = 7, + ACTIONS(2374), 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, + [22638] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2376), 16, + 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_EQ, - STATE(617), 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(1737), 10, + sym_identifier, + ACTIONS(2378), 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, @@ -78793,7 +78746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1724), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [22703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2380), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -78806,9 +78765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1718), 19, + anon_sym___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2382), 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, @@ -78817,19 +78783,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, + 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, - [23794] = 3, + [22760] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 19, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2384), 16, + 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_EQ, + sym_identifier, + ACTIONS(2386), 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, + [22827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2390), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -78849,7 +78884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2400), 29, + ACTIONS(2388), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -78862,6 +78897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, anon_sym_sizeof, @@ -78879,10 +78915,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23850] = 3, + [22884] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 19, + ACTIONS(2392), 1, + anon_sym_EQ, + STATE(618), 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(2394), 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(1724), 14, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + sym_identifier, + ACTIONS(1718), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2396), 16, + 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_EQ, + sym_identifier, + ACTIONS(2398), 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, + [23006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -78902,7 +79050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2404), 29, + ACTIONS(2400), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -78915,6 +79063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, anon_sym_sizeof, @@ -78932,7 +79081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23906] = 18, + [23063] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -78951,11 +79100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(715), 1, + STATE(713), 1, sym_type_specifier, - STATE(771), 1, + STATE(762), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(49), 2, anon_sym_alignas, @@ -78965,13 +79114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(625), 7, + STATE(620), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78979,16 +79128,6 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -79000,50 +79139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23992] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2412), 1, - anon_sym_LBRACE, - STATE(717), 1, - sym_field_declaration_list, - STATE(748), 1, - sym_attribute_specifier, - ACTIONS(2410), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2408), 36, + ACTIONS(47), 10, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -79052,78 +79149,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [24055] = 7, + anon_sym__Nonnull, + [23150] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2404), 16, + 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(2412), 1, - anon_sym_LBRACE, - STATE(721), 1, - sym_field_declaration_list, - STATE(743), 1, - sym_attribute_specifier, - ACTIONS(2416), 7, + anon_sym_EQ, + sym_identifier, + ACTIONS(2406), 26, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + 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_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(2414), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23217] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(618), 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(2286), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, sym_identifier, - [24118] = 7, + ACTIONS(2284), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23278] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(2412), 1, anon_sym_LBRACE, - STATE(733), 1, + STATE(719), 1, sym_field_declaration_list, - STATE(755), 1, + STATE(748), 1, sym_attribute_specifier, - ACTIONS(2420), 7, + ACTIONS(2410), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79131,7 +79284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2418), 36, + ACTIONS(2408), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -79164,22 +79317,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24181] = 7, + [23342] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(2412), 1, anon_sym_LBRACE, - STATE(732), 1, + STATE(726), 1, sym_field_declaration_list, - STATE(783), 1, + STATE(755), 1, sym_attribute_specifier, - ACTIONS(2424), 7, + ACTIONS(2416), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79187,7 +79341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2422), 36, + ACTIONS(2414), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -79220,22 +79374,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24244] = 3, + [23406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 7, + ACTIONS(2390), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2426), 40, + anon_sym_COLON, + ACTIONS(2388), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -79269,6 +79424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -79276,18 +79432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24299] = 3, + [23462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 7, + ACTIONS(2420), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2404), 40, + anon_sym_LBRACE, + ACTIONS(2418), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -79321,6 +79477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -79328,10 +79485,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24354] = 3, + [23518] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_field_declaration_list, + STATE(769), 1, + sym_attribute_specifier, + ACTIONS(2424), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79339,10 +79504,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2400), 40, + ACTIONS(2422), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -79373,25 +79537,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [24409] = 7, + [23582] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_EQ, + STATE(618), 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(1737), 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(1724), 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(1718), 19, + 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_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, + [23646] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(2412), 1, anon_sym_LBRACE, - STATE(730), 1, + STATE(723), 1, sym_field_declaration_list, - STATE(779), 1, + STATE(740), 1, sym_attribute_specifier, - ACTIONS(2432), 7, + ACTIONS(2428), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -79399,7 +79618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2430), 36, + ACTIONS(2426), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -79432,24 +79651,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [24472] = 3, + [23710] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 6, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(725), 1, + sym_field_declaration_list, + STATE(746), 1, + sym_attribute_specifier, + ACTIONS(2432), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2434), 40, + anon_sym_COLON, + ACTIONS(2430), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -79480,201 +79708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24526] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2440), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(625), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(2438), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 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, - [24596] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2444), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(625), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(2442), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 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, - [24666] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1115), 1, - anon_sym_LBRACK_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2448), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(711), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(2446), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, sym_identifier, - ACTIONS(45), 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, - [24736] = 3, + [23774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1700), 6, + ACTIONS(2402), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1698), 40, + anon_sym_COLON, + ACTIONS(2400), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -79708,6 +79758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -79715,7 +79766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [24790] = 11, + [23830] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -79724,18 +79775,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2452), 5, + ACTIONS(2436), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(712), 7, + STATE(620), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79743,265 +79794,52 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 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(2450), 9, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(45), 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, - [24860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1704), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1702), 40, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [24914] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(781), 1, - sym_attribute_specifier, - ACTIONS(2456), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2454), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, + ACTIONS(2434), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [24971] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(780), 1, - sym_attribute_specifier, - ACTIONS(2460), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2458), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25028] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_EQ, - ACTIONS(1744), 1, - anon_sym_COLON, - STATE(617), 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(1737), 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(1724), 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(1718), 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, - [25091] = 5, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [23901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(757), 1, - sym_attribute_specifier, - ACTIONS(2464), 7, + ACTIONS(1700), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2462), 36, + ACTIONS(1698), 41, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -80032,28 +79870,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25148] = 5, + [23956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(778), 1, - sym_attribute_specifier, - ACTIONS(2468), 7, + ACTIONS(2440), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2466), 36, + ACTIONS(2438), 41, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -80084,29 +79922,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25205] = 5, + [24011] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(750), 1, - sym_attribute_specifier, - ACTIONS(2472), 7, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2444), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2470), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, + STATE(710), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2442), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -80114,11 +79966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -80128,6 +79979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -80136,83 +79989,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25262] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_EQ, - ACTIONS(1735), 1, - anon_sym_COLON, - STATE(617), 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(1737), 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(1724), 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(1718), 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, - [25325] = 5, + anon_sym__Nonnull, + [24082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(773), 1, - sym_attribute_specifier, - ACTIONS(2476), 7, + ACTIONS(1704), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2474), 36, + ACTIONS(1702), 41, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -80243,198 +80034,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [25382] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_EQ, - ACTIONS(1760), 1, - anon_sym_COLON, - STATE(617), 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(1737), 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(1724), 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(1718), 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, - [25445] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_COLON, - STATE(617), 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(1737), 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(1724), 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(1718), 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, - [25508] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_EQ, - ACTIONS(2478), 1, - anon_sym_COLON, - STATE(617), 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(1737), 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(1724), 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(1718), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [25571] = 5, + [24137] = 11, ACTIONS(3), 1, sym_comment, - STATE(728), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2484), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2482), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2448), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2480), 33, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + STATE(716), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2446), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -80443,6 +80079,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -80452,6 +80091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -80460,84 +80101,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25628] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_EQ, - ACTIONS(1742), 1, - anon_sym_COLON, - STATE(617), 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(1737), 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(1724), 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(1718), 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, - [25691] = 5, + anon_sym__Nonnull, + [24208] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(772), 1, - sym_attribute_specifier, - ACTIONS(2489), 7, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2452), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2487), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, + STATE(620), 7, + sym__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(2450), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -80545,11 +80138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -80559,6 +80151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -80567,18 +80161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [25748] = 5, + anon_sym__Nonnull, + [24279] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(746), 1, + STATE(770), 1, sym_attribute_specifier, - ACTIONS(2493), 7, + ACTIONS(2456), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80586,7 +80177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2491), 36, + ACTIONS(2454), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -80619,18 +80210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25805] = 5, + [24337] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(747), 1, + STATE(741), 1, sym_attribute_specifier, - ACTIONS(2497), 7, + ACTIONS(2460), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80638,7 +80230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2495), 36, + ACTIONS(2458), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -80671,18 +80263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25862] = 5, + [24395] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(742), 1, + STATE(745), 1, sym_attribute_specifier, - ACTIONS(2501), 7, + ACTIONS(2464), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80690,7 +80283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2499), 36, + ACTIONS(2462), 37, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -80723,14 +80316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25919] = 3, + [24453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(729), 1, + sym_attribute_specifier, + ACTIONS(2468), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80738,10 +80336,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2503), 37, + ACTIONS(2466), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -80772,21 +80369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [25971] = 5, + [24511] = 5, ACTIONS(3), 1, sym_comment, - STATE(728), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2511), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2509), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(738), 1, + sym_attribute_specifier, + ACTIONS(2472), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80794,10 +80389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2507), 32, + ACTIONS(2470), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -80806,6 +80400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -80824,20 +80422,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26027] = 5, + [24569] = 5, ACTIONS(3), 1, sym_comment, - STATE(728), 1, + STATE(722), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2511), 4, + ACTIONS(2478), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2515), 7, + ACTIONS(2476), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80845,7 +80445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2513), 32, + ACTIONS(2474), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -80875,20 +80475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26083] = 5, + [24627] = 5, ACTIONS(3), 1, sym_comment, - STATE(728), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2511), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2519), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(768), 1, + sym_attribute_specifier, + ACTIONS(2483), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80896,10 +80495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2517), 32, + ACTIONS(2481), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -80908,6 +80506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -80926,20 +80528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26139] = 5, + [24685] = 5, ACTIONS(3), 1, sym_comment, - STATE(735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2525), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2523), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(743), 1, + sym_attribute_specifier, + ACTIONS(2487), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -80947,10 +80548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2521), 32, + ACTIONS(2485), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -80959,6 +80559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -80977,32 +80581,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26195] = 6, + [24743] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 1, - anon_sym_LPAREN2, - STATE(752), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1731), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1729), 6, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(732), 1, + sym_attribute_specifier, + ACTIONS(2491), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1716), 32, + ACTIONS(2489), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -81011,6 +80612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -81029,13 +80634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26253] = 3, + [24801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(739), 1, + sym_attribute_specifier, + ACTIONS(2495), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81043,10 +80654,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2530), 37, + ACTIONS(2493), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -81077,14 +80687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26305] = 3, + [24859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(744), 1, + sym_attribute_specifier, + ACTIONS(2499), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81092,10 +80707,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2534), 37, + ACTIONS(2497), 37, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -81126,14 +80740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26357] = 3, + [24917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 7, + ACTIONS(2503), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81141,7 +80756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2538), 37, + ACTIONS(2501), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81175,14 +80790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26409] = 3, + [24970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 7, + ACTIONS(2507), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81190,7 +80806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2542), 37, + ACTIONS(2505), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81224,14 +80840,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26461] = 3, + [25023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 7, + STATE(758), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2511), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81239,7 +80863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2546), 37, + ACTIONS(2509), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81251,10 +80875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -81273,22 +80893,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26513] = 3, + [25080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 7, + ACTIONS(2474), 1, + sym_primitive_type, + STATE(722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2478), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2518), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2550), 37, + ACTIONS(2515), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81300,10 +80928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -81322,14 +80946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26565] = 3, + [25139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2556), 7, + ACTIONS(2523), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81337,7 +80961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2554), 37, + ACTIONS(2521), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81371,14 +80995,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26617] = 3, + [25192] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 7, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1760), 1, + anon_sym_COLON, + STATE(618), 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(1737), 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(1724), 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(1718), 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, + [25255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81386,7 +81066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2558), 37, + ACTIONS(2525), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81420,14 +81100,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26669] = 3, + [25308] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 7, + STATE(722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2533), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2531), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81435,7 +81123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2562), 37, + ACTIONS(2529), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81447,10 +81135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -81469,14 +81153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [26721] = 3, + [25365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 7, + ACTIONS(2537), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81484,7 +81168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2566), 37, + ACTIONS(2535), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81518,14 +81202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26773] = 3, + [25418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 7, + ACTIONS(2541), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81533,7 +81218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2570), 37, + ACTIONS(2539), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81567,14 +81252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26825] = 3, + [25471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2576), 7, + ACTIONS(2545), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81582,7 +81268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2574), 37, + ACTIONS(2543), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81616,21 +81302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26877] = 5, + [25524] = 3, ACTIONS(3), 1, sym_comment, - STATE(728), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2511), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2580), 7, + ACTIONS(2549), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81638,7 +81318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2578), 32, + ACTIONS(2547), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81650,6 +81330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -81668,13 +81352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [26933] = 3, + [25577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 7, + ACTIONS(2553), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81682,7 +81368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2582), 37, + ACTIONS(2551), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81716,14 +81402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [26985] = 3, + [25630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 7, + ACTIONS(2557), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81731,7 +81418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2586), 37, + ACTIONS(2555), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81765,14 +81452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27037] = 3, + [25683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 7, + ACTIONS(2561), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81780,7 +81468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2590), 37, + ACTIONS(2559), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81814,14 +81502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27089] = 3, + [25736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 7, + ACTIONS(2565), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81829,7 +81518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2521), 37, + ACTIONS(2563), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81863,14 +81552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27141] = 3, + [25789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 7, + ACTIONS(2569), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81878,7 +81568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2594), 37, + ACTIONS(2567), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81912,655 +81602,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [27193] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2598), 1, - anon_sym_EQ, - STATE(617), 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(2600), 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(1724), 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(1718), 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, - [27253] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2610), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2612), 1, - anon_sym_AMP_AMP, - ACTIONS(2614), 1, - anon_sym_PIPE, - ACTIONS(2616), 1, - anon_sym_CARET, - ACTIONS(2618), 1, - anon_sym_AMP, - ACTIONS(2628), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2604), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2620), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2622), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2624), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2626), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2608), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2602), 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, - [27339] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2608), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 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(2378), 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, - [27403] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2612), 1, - anon_sym_AMP_AMP, - ACTIONS(2614), 1, - anon_sym_PIPE, - ACTIONS(2616), 1, - anon_sym_CARET, - ACTIONS(2618), 1, - anon_sym_AMP, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2620), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2622), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2624), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2626), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2608), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2378), 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, - [27485] = 17, + [25842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2614), 1, - anon_sym_PIPE, - ACTIONS(2616), 1, - anon_sym_CARET, - ACTIONS(2618), 1, - anon_sym_AMP, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2620), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2622), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2624), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2626), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2608), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2378), 19, + ACTIONS(2573), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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, - [27565] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2616), 1, - anon_sym_CARET, - ACTIONS(2618), 1, - anon_sym_AMP, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2620), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2622), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2624), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2626), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2376), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2608), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2378), 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, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2571), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27643] = 15, + [25895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2577), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2618), 1, - anon_sym_AMP, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2620), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2622), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2624), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2626), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2608), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2378), 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2575), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27719] = 14, + [25948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2579), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2620), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2622), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2624), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2626), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2608), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2378), 19, + STATE(754), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1731), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1729), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(1716), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - [27793] = 13, + [26007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2584), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2624), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2626), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2608), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2378), 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2582), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27865] = 11, + [26060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2588), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2626), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2608), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 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(2378), 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2586), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [27933] = 10, + [26113] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2608), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 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, + ACTIONS(1733), 1, anon_sym_EQ, - ACTIONS(2378), 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, + ACTIONS(1735), 1, + anon_sym_COLON, + STATE(618), 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(1737), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -82571,161 +81886,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [27999] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2610), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2612), 1, - anon_sym_AMP_AMP, - ACTIONS(2614), 1, - anon_sym_PIPE, - ACTIONS(2616), 1, - anon_sym_CARET, - ACTIONS(2618), 1, - anon_sym_AMP, - ACTIONS(2628), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2606), 2, + ACTIONS(1724), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2620), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2622), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2624), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2626), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2632), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2608), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2630), 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, - [28085] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2610), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2612), 1, - anon_sym_AMP_AMP, - ACTIONS(2614), 1, anon_sym_PIPE, - ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2618), 1, anon_sym_AMP, - ACTIONS(2628), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2606), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2620), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2622), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2624), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2636), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2608), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2634), 16, + ACTIONS(1718), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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, - [28171] = 7, + 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, + [26176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, - sym_identifier, - ACTIONS(2647), 1, - sym_primitive_type, - STATE(782), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2645), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2641), 6, + ACTIONS(2592), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2643), 31, + anon_sym_COLON, + ACTIONS(2590), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -82737,6 +81938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -82755,12 +81960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - [28231] = 3, + sym_primitive_type, + sym_identifier, + [26229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 7, + ACTIONS(2596), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82768,7 +81976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2649), 37, + ACTIONS(2594), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -82802,14 +82010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28283] = 3, + [26282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 7, + ACTIONS(2600), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82817,7 +82026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2653), 37, + ACTIONS(2598), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -82851,14 +82060,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28335] = 3, + [26335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 7, + STATE(722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2533), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2604), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82866,7 +82083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2657), 37, + ACTIONS(2602), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -82878,10 +82095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -82900,14 +82113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [28387] = 3, + [26392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 7, + ACTIONS(2608), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82915,7 +82128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2661), 37, + ACTIONS(2606), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -82949,21 +82162,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28439] = 5, + [26445] = 5, ACTIONS(3), 1, sym_comment, - STATE(736), 1, + STATE(722), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2669), 4, + ACTIONS(2533), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2667), 7, + ACTIONS(2612), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82971,7 +82185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2665), 32, + ACTIONS(2610), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83001,20 +82215,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [28495] = 5, + [26502] = 8, ACTIONS(3), 1, sym_comment, - STATE(737), 1, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1739), 1, + anon_sym_COLON, + STATE(618), 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(1737), 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(1724), 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(1718), 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, + [26565] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(722), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2675), 4, + ACTIONS(2533), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2673), 7, + ACTIONS(2616), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83022,7 +82292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2671), 32, + ACTIONS(2614), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83052,13 +82322,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [28551] = 3, + [26622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 7, + STATE(735), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2622), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2620), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83066,7 +82344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2677), 37, + ACTIONS(2618), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83078,10 +82356,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [26679] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1758), 1, + anon_sym_COLON, + STATE(618), 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(1737), 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(1724), 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(1718), 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, + [26742] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(2624), 1, + anon_sym_COLON, + STATE(618), 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(1737), 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(1724), 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(1718), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26805] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2626), 1, + sym_identifier, + ACTIONS(2635), 1, + sym_primitive_type, + STATE(731), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2633), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2629), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2631), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -83100,14 +82539,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [28603] = 3, + [26866] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1756), 1, + anon_sym_COLON, + STATE(618), 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(1737), 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(1724), 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(1718), 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, + [26929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2683), 7, + ACTIONS(2620), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83115,7 +82608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2681), 37, + ACTIONS(2618), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83149,14 +82642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28655] = 3, + [26982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2687), 7, + ACTIONS(2639), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83164,7 +82658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2685), 37, + ACTIONS(2637), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83198,14 +82692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28707] = 3, + [27035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 7, + ACTIONS(2643), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83213,7 +82708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2689), 37, + ACTIONS(2641), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83247,30 +82742,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28759] = 6, + [27088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 1, - sym_primitive_type, - STATE(728), 1, + STATE(756), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2484), 4, + ACTIONS(2649), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2647), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2645), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [27145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2651), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2696), 6, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [27198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2657), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2693), 32, + anon_sym_COLON, + ACTIONS(2655), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83282,6 +82872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -83300,13 +82894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - [28817] = 3, + [27251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 7, + ACTIONS(2661), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83314,7 +82910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2699), 37, + ACTIONS(2659), 38, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83348,11 +82944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [28869] = 12, + [27304] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -83361,9 +82958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2703), 1, + ACTIONS(2663), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, @@ -83371,7 +82968,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2448), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(711), 7, + STATE(716), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83388,16 +82985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -83409,73 +82996,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28938] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2709), 1, - anon_sym_CARET, - ACTIONS(2711), 1, - anon_sym_AMP, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2705), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2707), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2378), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29015] = 3, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [27374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2667), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2721), 42, + ACTIONS(2665), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -83511,84 +83048,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [29066] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2632), 1, - anon_sym_EQ, - ACTIONS(2709), 1, - anon_sym_CARET, - ACTIONS(2711), 1, - anon_sym_AMP, - ACTIONS(2725), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2727), 1, - anon_sym_AMP_AMP, - ACTIONS(2729), 1, - anon_sym_PIPE, - ACTIONS(2731), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2707), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2630), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29151] = 3, + sym_identifier, + [27426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2671), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2733), 42, + ACTIONS(2669), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -83624,6 +83097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -83631,12 +83105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29202] = 3, + [27478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 1, + ACTIONS(2675), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2737), 42, + ACTIONS(2673), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -83672,6 +83146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -83679,12 +83154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29253] = 3, + [27530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 1, + ACTIONS(2679), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1357), 42, + ACTIONS(2677), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -83720,6 +83195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -83727,12 +83203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29304] = 3, + [27582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 1, + ACTIONS(2683), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1327), 42, + ACTIONS(2681), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -83768,6 +83244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -83775,12 +83252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29355] = 3, + [27634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(2687), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1343), 42, + ACTIONS(2685), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -83816,6 +83293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -83823,12 +83301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29406] = 3, + [27686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(2691), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2741), 42, + ACTIONS(2689), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -83864,6 +83342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -83871,12 +83350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29457] = 3, + [27738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 1, + ACTIONS(2695), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1295), 42, + ACTIONS(2693), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -83912,6 +83391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -83919,12 +83399,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29508] = 3, + [27790] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1115), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2697), 1, + anon_sym_SEMI, + STATE(709), 1, + sym_alignas_qualifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2448), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(716), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2446), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [27860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, + ACTIONS(2701), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 42, + ACTIONS(2699), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -83960,6 +83498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -83967,54 +83506,664 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29559] = 13, + [27912] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2713), 1, + anon_sym_AMP_AMP, + ACTIONS(2715), 1, + anon_sym_PIPE, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + ACTIONS(2729), 1, + anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2705), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2703), 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, + [27998] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 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(2406), 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, + [28062] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2713), 1, + anon_sym_AMP_AMP, + ACTIONS(2715), 1, + anon_sym_PIPE, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2404), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2406), 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, + [28144] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2715), 1, + anon_sym_PIPE, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2404), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2406), 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, + [28224] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2406), 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, + [28302] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2719), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2406), 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, + [28378] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2406), 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, + [28452] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2723), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2725), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2406), 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, + [28524] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2727), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 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(2406), 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, + [28592] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2707), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2709), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 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(2406), 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, + [28658] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - STATE(675), 1, + ACTIONS(2711), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2713), 1, + anon_sym_AMP_AMP, + ACTIONS(2715), 1, + anon_sym_PIPE, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + ACTIONS(2729), 1, + anon_sym_QMARK, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2715), 2, + ACTIONS(2721), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2723), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 3, + ACTIONS(2733), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2376), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2378), 21, + ACTIONS(2731), 16, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84025,109 +84174,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [29630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1269), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1267), 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___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29681] = 20, + [28744] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2636), 1, - anon_sym_EQ, - ACTIONS(2709), 1, - anon_sym_CARET, ACTIONS(2711), 1, - anon_sym_AMP, - ACTIONS(2725), 1, anon_sym_PIPE_PIPE, - ACTIONS(2727), 1, + ACTIONS(2713), 1, anon_sym_AMP_AMP, - ACTIONS(2729), 1, + ACTIONS(2715), 1, anon_sym_PIPE, - ACTIONS(2731), 1, + ACTIONS(2717), 1, + anon_sym_CARET, + ACTIONS(2719), 1, + anon_sym_AMP, + ACTIONS(2729), 1, anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2707), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2721), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2723), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2727), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 3, + ACTIONS(2737), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2634), 16, + ACTIONS(2735), 16, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + 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, @@ -84138,12 +84240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [29766] = 3, + sym_identifier, + [28830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(1367), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2745), 42, + ACTIONS(1365), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -84179,6 +84282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -84186,71 +84290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29817] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2713), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2715), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2717), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2707), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2378), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29890] = 3, + [28882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 1, + ACTIONS(1261), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2749), 42, + ACTIONS(1259), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -84286,6 +84331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -84293,7 +84339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29941] = 12, + [28934] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84302,9 +84348,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2753), 1, + ACTIONS(2739), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, @@ -84312,7 +84358,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2448), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(711), 7, + STATE(716), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84329,16 +84375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(47), 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(45), 10, anon_sym_extern, anon_sym_static, @@ -84350,12 +84386,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30010] = 3, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [29004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, + ACTIONS(1309), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2755), 42, + ACTIONS(1307), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -84391,6 +84438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -84398,54 +84446,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30061] = 12, + [29056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1115), 1, + ACTIONS(1313), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2759), 1, - anon_sym_SEMI, - STATE(707), 1, - sym_alignas_qualifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2448), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(711), 7, - sym__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(2446), 8, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 9, + ACTIONS(1311), 43, + aux_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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -84455,12 +84479,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30130] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(1317), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 42, + ACTIONS(1315), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -84496,6 +84536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -84503,12 +84544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30181] = 3, + [29160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(1281), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 42, + ACTIONS(1279), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -84544,6 +84585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -84551,12 +84593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30232] = 3, + [29212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + ACTIONS(2743), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 42, + ACTIONS(2741), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -84592,6 +84634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -84599,12 +84642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30283] = 3, + [29264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(2747), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 42, + ACTIONS(2745), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -84640,6 +84683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -84647,12 +84691,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30334] = 3, + [29316] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2749), 1, + anon_sym_EQ, + STATE(618), 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(2751), 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(1724), 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(1718), 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, + [29376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(2755), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 42, + ACTIONS(2753), 43, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -84688,6 +84785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -84695,7 +84793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30385] = 12, + [29428] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -84704,9 +84802,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1115), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 1, + ACTIONS(2757), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, @@ -84714,7 +84812,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2448), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(711), 7, + STATE(716), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84731,7 +84829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(47), 9, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -84741,8 +84850,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + anon_sym__Nonnull, + [29498] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 1, + anon_sym___attribute__, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(2768), 1, + anon_sym_COLON, + STATE(749), 1, + sym_attribute_specifier, + STATE(869), 1, + sym_enumerator_list, + ACTIONS(2761), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2759), 32, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -84752,29 +84892,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [30454] = 5, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [29559] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_EQ, - ACTIONS(2398), 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(1724), 13, - aux_sym_preproc_elif_token1, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2770), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2772), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2404), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -84782,75 +84934,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1718), 19, + anon_sym_EQ, + ACTIONS(2406), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [30509] = 20, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29624] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2604), 1, + ACTIONS(2733), 1, anon_sym_EQ, - ACTIONS(2709), 1, - anon_sym_CARET, - ACTIONS(2711), 1, - anon_sym_AMP, - ACTIONS(2725), 1, + ACTIONS(2774), 1, anon_sym_PIPE_PIPE, - ACTIONS(2727), 1, + ACTIONS(2776), 1, anon_sym_AMP_AMP, - ACTIONS(2729), 1, + ACTIONS(2778), 1, anon_sym_PIPE, - ACTIONS(2731), 1, + ACTIONS(2780), 1, + anon_sym_CARET, + ACTIONS(2782), 1, + anon_sym_AMP, + ACTIONS(2792), 1, anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2770), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2784), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2786), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2788), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2790), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 3, + ACTIONS(2772), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2602), 16, + ACTIONS(2731), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -84867,107 +85024,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30594] = 11, + [29709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, + ACTIONS(2392), 1, + anon_sym_EQ, + ACTIONS(2394), 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(1724), 13, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2707), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - ACTIONS(2378), 23, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1718), 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_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, - [30661] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [29764] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - STATE(675), 1, + ACTIONS(2705), 1, + anon_sym_EQ, + ACTIONS(2774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2776), 1, + anon_sym_AMP_AMP, + ACTIONS(2778), 1, + anon_sym_PIPE, + ACTIONS(2780), 1, + anon_sym_CARET, + ACTIONS(2782), 1, + anon_sym_AMP, + ACTIONS(2792), 1, + anon_sym_QMARK, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2770), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2707), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2784), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2786), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2788), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2790), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2378), 23, + ACTIONS(2772), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2703), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84978,26 +85139,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30726] = 9, + [29849] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 3, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2772), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2376), 10, + ACTIONS(2404), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -85008,7 +85169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2378), 23, + ACTIONS(2406), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -85032,51 +85193,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30789] = 18, + [29912] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2376), 1, + ACTIONS(2404), 1, anon_sym_EQ, - ACTIONS(2709), 1, - anon_sym_CARET, - ACTIONS(2711), 1, - anon_sym_AMP, - ACTIONS(2727), 1, + ACTIONS(2776), 1, anon_sym_AMP_AMP, - ACTIONS(2729), 1, + ACTIONS(2778), 1, anon_sym_PIPE, - STATE(675), 1, + ACTIONS(2780), 1, + anon_sym_CARET, + ACTIONS(2782), 1, + anon_sym_AMP, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2770), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2784), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2786), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2788), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2790), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 3, + ACTIONS(2772), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2378), 18, + ACTIONS(2406), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -85095,58 +85256,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30870] = 17, + [29993] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2376), 1, + ACTIONS(2737), 1, anon_sym_EQ, - ACTIONS(2709), 1, + ACTIONS(2774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2776), 1, + anon_sym_AMP_AMP, + ACTIONS(2778), 1, + anon_sym_PIPE, + ACTIONS(2780), 1, anon_sym_CARET, - ACTIONS(2711), 1, + ACTIONS(2782), 1, anon_sym_AMP, - ACTIONS(2729), 1, - anon_sym_PIPE, - STATE(675), 1, + ACTIONS(2792), 1, + anon_sym_QMARK, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2770), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2784), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2786), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2788), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2790), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 3, + ACTIONS(2772), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2378), 19, + ACTIONS(2735), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85157,47 +85321,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30949] = 15, + [30078] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2711), 1, + ACTIONS(2404), 1, + anon_sym_EQ, + ACTIONS(2778), 1, + anon_sym_PIPE, + ACTIONS(2780), 1, + anon_sym_CARET, + ACTIONS(2782), 1, anon_sym_AMP, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2705), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2770), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2713), 2, + ACTIONS(2784), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2715), 2, + ACTIONS(2786), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2717), 2, + ACTIONS(2788), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2719), 2, + ACTIONS(2790), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2376), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2707), 3, + ACTIONS(2772), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2378), 19, + ACTIONS(2406), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -85217,104 +85383,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31024] = 21, + [30157] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(1781), 1, - anon_sym_STAR, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2783), 1, - sym_identifier, - ACTIONS(2791), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1262), 1, - sym__declarator, - STATE(1423), 1, - sym__abstract_declarator, - STATE(1447), 1, - sym_parameter_list, - STATE(1926), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2785), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2789), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(918), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(964), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 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, - [31110] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_EQ, - ACTIONS(1737), 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(1724), 12, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2770), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2790), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2772), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2404), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1718), 19, + anon_sym_EQ, + ACTIONS(2406), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -85324,417 +85427,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, 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, + [30224] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2780), 1, + anon_sym_CARET, + ACTIONS(2782), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, anon_sym_DOT, anon_sym_DASH_GT, - [31164] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2797), 1, - anon_sym___attribute__, - ACTIONS(2800), 1, - anon_sym_LBRACE, - ACTIONS(2802), 1, - anon_sym_COLON, - STATE(749), 1, - sym_attribute_specifier, - STATE(846), 1, - sym_enumerator_list, - ACTIONS(2795), 6, + ACTIONS(2404), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2770), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2784), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2786), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2788), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2790), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2772), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2406), 19, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [31224] = 21, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30301] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(1781), 1, - anon_sym_STAR, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2783), 1, - sym_identifier, - ACTIONS(2791), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1270), 1, - sym__declarator, - STATE(1431), 1, - sym__abstract_declarator, - STATE(1447), 1, - sym_parameter_list, - STATE(1926), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2789), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2804), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(819), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(917), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 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, - [31310] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 1, - anon_sym_LBRACE, - ACTIONS(2810), 1, - anon_sym___attribute__, - STATE(775), 1, - sym_attribute_specifier, - STATE(877), 1, - sym_enumerator_list, - ACTIONS(2808), 6, + ACTIONS(2782), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2770), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2784), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2786), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2788), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2790), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2772), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2406), 19, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2806), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [31367] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2813), 2, anon_sym___attribute__, - sym_identifier, - ACTIONS(2820), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2823), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2816), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2818), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [31422] = 6, + 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, + [30376] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 2, - anon_sym___attribute__, - sym_identifier, - ACTIONS(2832), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2835), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2828), 4, - anon_sym_COMMA, + ACTIONS(2356), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2830), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - [31477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2149), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2147), 38, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2153), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2151), 38, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31573] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2364), 1, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2376), 1, - anon_sym_EQ, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_AMP_AMP, - ACTIONS(2845), 1, + ACTIONS(2770), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2784), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2786), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2788), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2790), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2772), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 4, anon_sym_PIPE, - ACTIONS(2847), 1, anon_sym_CARET, - ACTIONS(2849), 1, anon_sym_AMP, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, + anon_sym_EQ, + ACTIONS(2406), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [30449] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2770), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2851), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2853), 2, + ACTIONS(2786), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2855), 2, + ACTIONS(2788), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2857), 2, + ACTIONS(2790), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2841), 3, + ACTIONS(2772), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2378), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(2404), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2406), 21, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -85746,35 +85677,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31652] = 3, + [30520] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2721), 37, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + STATE(993), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1273), 1, + sym__declarator, + STATE(1401), 1, + sym__abstract_declarator, + STATE(1437), 1, + sym_parameter_list, + STATE(1813), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2796), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(916), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(954), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 10, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -85783,42 +85742,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31699] = 3, + anon_sym__Nonnull, + [30607] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2737), 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(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + STATE(993), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1263), 1, + sym__declarator, + STATE(1431), 1, + sym__abstract_declarator, + STATE(1437), 1, + sym_parameter_list, + STATE(1813), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2804), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(820), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(927), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 10, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -85827,28 +85808,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31746] = 3, + anon_sym__Nonnull, + [30694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 2, + ACTIONS(2806), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(2813), 2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2745), 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_LBRACE, + ACTIONS(2816), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2809), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2811), 31, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -85871,28 +85852,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [31793] = 3, + [30750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(2818), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(2825), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2741), 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_LBRACE, + ACTIONS(2828), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2821), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2823), 31, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -85915,77 +85902,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [31840] = 3, + [30806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2745), 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, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1737), 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(1724), 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(1718), 19, + 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___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [31887] = 3, + 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, + [30860] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 1, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(2834), 1, + anon_sym___attribute__, + STATE(766), 1, + sym_attribute_specifier, + STATE(860), 1, + sym_enumerator_list, + ACTIONS(2832), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2749), 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(2830), 32, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86003,29 +86005,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [31934] = 3, + [30918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, + ACTIONS(2171), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2755), 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_LBRACE, + ACTIONS(2169), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -86047,6 +86047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86054,22 +86055,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31981] = 3, + [30967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(2175), 2, 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_LBRACE, + ACTIONS(2173), 39, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -86091,6 +86093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86098,15 +86101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32028] = 3, + [31016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(1317), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 38, + anon_sym_RBRACE, + ACTIONS(1315), 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, @@ -86135,6 +86138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86142,15 +86146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32075] = 3, + [31064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + ACTIONS(2747), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 38, + anon_sym_RBRACE, + ACTIONS(2745), 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, @@ -86179,6 +86183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86186,15 +86191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32122] = 3, + [31112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 1, + ACTIONS(1281), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1357), 38, + anon_sym_RBRACE, + ACTIONS(1279), 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, @@ -86223,6 +86228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86230,15 +86236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32169] = 3, + [31160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 1, + ACTIONS(2667), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1327), 38, + anon_sym_RBRACE, + ACTIONS(2665), 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, @@ -86267,6 +86273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86274,15 +86281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32216] = 3, + [31208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(2671), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1343), 38, + anon_sym_RBRACE, + ACTIONS(2669), 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, @@ -86311,6 +86318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86318,15 +86326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32263] = 3, + [31256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 1, + ACTIONS(2695), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1295), 38, + anon_sym_RBRACE, + ACTIONS(2693), 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, @@ -86355,6 +86363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86362,15 +86371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32310] = 3, + [31304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 1, + ACTIONS(2691), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1255), 38, + anon_sym_RBRACE, + ACTIONS(2689), 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, @@ -86399,6 +86408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86406,122 +86416,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32357] = 3, + [31352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 1, + ACTIONS(1367), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1267), 38, + ACTIONS(1365), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32404] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2436), 1, - anon_sym_LBRACK_LBRACK, - STATE(470), 1, - sym_string_literal, - ACTIONS(2861), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2434), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32455] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2867), 1, - anon_sym___attribute__, - STATE(734), 1, - sym_attribute_specifier, - ACTIONS(2865), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2863), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86539,15 +86453,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [32506] = 3, + [31400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(1261), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 38, + ACTIONS(1259), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86579,6 +86498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86586,12 +86506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32553] = 3, + [31448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(1309), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 38, + ACTIONS(1307), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -86623,6 +86543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86630,15 +86551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32600] = 3, + [31496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1313), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1357), 37, + ACTIONS(1311), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -86667,6 +86588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -86674,132 +86596,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32647] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2376), 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(2378), 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, - [32706] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2380), 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(2382), 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, - [32765] = 5, + [31544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, - anon_sym___attribute__, - STATE(753), 1, - sym_attribute_specifier, - ACTIONS(2872), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1317), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2870), 31, + ACTIONS(1315), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86811,527 +86627,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thread, anon_sym_const, anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [32816] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2604), 1, - anon_sym_EQ, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_AMP_AMP, - ACTIONS(2845), 1, - anon_sym_PIPE, - ACTIONS(2847), 1, - anon_sym_CARET, - ACTIONS(2849), 1, - anon_sym_AMP, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(2877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2879), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2851), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2853), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2602), 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, - [32899] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 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(2378), 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, - [32960] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2376), 1, - anon_sym_EQ, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_PIPE, - ACTIONS(2847), 1, - anon_sym_CARET, - ACTIONS(2849), 1, - anon_sym_AMP, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2851), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2853), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2378), 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, - [33037] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2847), 1, - anon_sym_CARET, - ACTIONS(2849), 1, - anon_sym_AMP, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2851), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2853), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2378), 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, - [33112] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2849), 1, - anon_sym_AMP, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2851), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2853), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2376), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2378), 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, - [33185] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2851), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2853), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2378), 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, - [33256] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2853), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2378), 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, - [33325] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2378), 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, - [33390] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2376), 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(2378), 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, - [33453] = 3, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 2, + ACTIONS(1281), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1327), 37, + ACTIONS(1279), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -87360,6 +86678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -87367,137 +86686,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33500] = 21, + [31640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2632), 1, - anon_sym_EQ, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_AMP_AMP, - ACTIONS(2845), 1, - anon_sym_PIPE, - ACTIONS(2847), 1, - anon_sym_CARET, - ACTIONS(2849), 1, - anon_sym_AMP, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(2877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2879), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2851), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2853), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2630), 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, - [33583] = 21, + ACTIONS(2675), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2673), 38, + 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___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2636), 1, - anon_sym_EQ, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_AMP_AMP, - ACTIONS(2845), 1, - anon_sym_PIPE, - ACTIONS(2847), 1, - anon_sym_CARET, - ACTIONS(2849), 1, - anon_sym_AMP, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(2877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2879), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2839), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2851), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2853), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2855), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2857), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2841), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2634), 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, - [33666] = 3, + ACTIONS(2695), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2693), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 2, + ACTIONS(2679), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2749), 37, + ACTIONS(2677), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -87528,6 +86813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -87535,15 +86821,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33713] = 3, + [31784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 2, + ACTIONS(2841), 1, + anon_sym___attribute__, + STATE(751), 1, + sym_attribute_specifier, + ACTIONS(2839), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1343), 37, + ACTIONS(2837), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [31836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2699), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -87572,6 +86905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -87579,15 +86913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33760] = 3, + [31884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 2, + ACTIONS(2743), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2777), 37, + ACTIONS(2741), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -87616,6 +86950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -87623,15 +86958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33807] = 3, + [31932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 2, + ACTIONS(2747), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1295), 37, + ACTIONS(2745), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -87660,6 +86995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -87667,13 +87003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33854] = 3, + [31980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2683), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2761), 37, + ACTIONS(2681), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -87704,6 +87040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -87711,13 +87048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33901] = 3, + [32028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 2, + ACTIONS(2755), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1255), 37, + ACTIONS(2753), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -87748,6 +87085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -87755,12 +87093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33948] = 3, + [32076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2755), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2721), 38, + ACTIONS(2753), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -87792,6 +87130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -87799,20 +87138,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33995] = 5, + [32124] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 1, + ACTIONS(2440), 1, anon_sym_LBRACK_LBRACK, - STATE(475), 1, + STATE(457), 1, sym_string_literal, - ACTIONS(2861), 5, + ACTIONS(2844), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2434), 32, + ACTIONS(2438), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -87838,6 +87177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -87845,231 +87185,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34046] = 8, + [32176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2356), 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(2358), 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, - [34103] = 9, + ACTIONS(2667), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2665), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2370), 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(2372), 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, - [34162] = 9, + ACTIONS(2671), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2669), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2384), 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(2386), 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, - [34221] = 9, + ACTIONS(2675), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2673), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2392), 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(2394), 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, - [34280] = 5, + ACTIONS(2679), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2677), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 1, - anon_sym___attribute__, - STATE(744), 1, - sym_attribute_specifier, - ACTIONS(2883), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2683), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2881), 31, + ACTIONS(2681), 39, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88087,18 +87402,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [34331] = 3, + [32416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 2, + ACTIONS(2687), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2733), 37, + ACTIONS(2685), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -88127,6 +87447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -88134,15 +87455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34378] = 3, + [32464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 2, + ACTIONS(2691), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2737), 37, + ACTIONS(2689), 39, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -88171,6 +87492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -88178,13 +87500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34425] = 3, + [32512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 2, + ACTIONS(1367), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1267), 37, + ACTIONS(1365), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -88215,6 +87537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -88222,13 +87545,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34472] = 3, + [32560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2850), 1, + anon_sym___attribute__, + STATE(734), 1, + sym_attribute_specifier, + ACTIONS(2848), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2846), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [32612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 2, + ACTIONS(2701), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2765), 37, + ACTIONS(2699), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -88259,6 +87629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -88266,20 +87637,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34519] = 5, + [32660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 1, + ACTIONS(2440), 1, anon_sym_LBRACK_LBRACK, - STATE(468), 1, + STATE(456), 1, sym_string_literal, - ACTIONS(2861), 5, + ACTIONS(2844), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2434), 32, + ACTIONS(2438), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -88305,6 +87676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -88312,13 +87684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34570] = 3, + [32712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 2, + ACTIONS(2687), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2741), 37, + ACTIONS(2685), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -88349,6 +87721,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32760] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_LBRACK_LBRACK, + STATE(455), 1, + sym_string_literal, + ACTIONS(2844), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2438), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -88356,15 +87776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34617] = 3, + [32812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2743), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2733), 38, + anon_sym_RBRACE, + ACTIONS(2741), 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, @@ -88393,6 +87813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -88400,20 +87821,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34664] = 5, + [32860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 1, + ACTIONS(1313), 2, anon_sym_LBRACK_LBRACK, - STATE(455), 1, - sym_string_literal, - ACTIONS(2861), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2434), 32, + anon_sym_RBRACE, + ACTIONS(1311), 38, + 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__, @@ -88439,6 +87858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -88446,13 +87866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34715] = 3, + [32908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 2, + ACTIONS(1261), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2769), 37, + ACTIONS(1259), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -88483,6 +87903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -88490,13 +87911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34762] = 3, + [32956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 2, + ACTIONS(1309), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2773), 37, + ACTIONS(1307), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -88527,42 +87948,552 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34809] = 3, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2857), 1, + anon_sym___attribute__, + STATE(737), 1, + sym_attribute_specifier, + ACTIONS(2855), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2853), 32, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [33056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_LBRACK_LBRACK, + STATE(458), 1, + sym_string_literal, + ACTIONS(2844), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2438), 33, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33108] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2860), 1, + sym_identifier, + ACTIONS(2862), 1, + anon_sym_LPAREN2, + ACTIONS(2864), 1, + anon_sym_STAR, + ACTIONS(2868), 1, + sym_primitive_type, + STATE(709), 1, + sym_alignas_qualifier, + STATE(993), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1323), 1, + sym__type_declarator, + STATE(1883), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(876), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2866), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1376), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [33185] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 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(2406), 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, + [33248] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2368), 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(2370), 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, + [33307] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2733), 1, + anon_sym_EQ, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(2878), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2880), 1, + anon_sym_AMP_AMP, + ACTIONS(2882), 1, + anon_sym_PIPE, + ACTIONS(2884), 1, + anon_sym_CARET, + ACTIONS(2886), 1, + anon_sym_AMP, + ACTIONS(2896), 1, + anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2888), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2890), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2731), 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, + [33390] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2372), 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(2374), 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, + [33449] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2860), 1, + sym_identifier, + ACTIONS(2862), 1, + anon_sym_LPAREN2, + ACTIONS(2864), 1, + anon_sym_STAR, + ACTIONS(2868), 1, + sym_primitive_type, + STATE(709), 1, + sym_alignas_qualifier, + STATE(993), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1326), 1, + sym__type_declarator, + STATE(1883), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(954), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(984), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2866), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1376), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [33526] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2755), 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, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2737), 1, + anon_sym_EQ, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(2878), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2880), 1, + anon_sym_AMP_AMP, + ACTIONS(2882), 1, + anon_sym_PIPE, + ACTIONS(2884), 1, + anon_sym_CARET, + ACTIONS(2886), 1, + anon_sym_AMP, + ACTIONS(2896), 1, + anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2888), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2890), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2735), 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, + [33609] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2860), 1, + sym_identifier, + ACTIONS(2862), 1, + anon_sym_LPAREN2, + ACTIONS(2864), 1, + anon_sym_STAR, + ACTIONS(2868), 1, + sym_primitive_type, + STATE(709), 1, + sym_alignas_qualifier, + STATE(993), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1325), 1, + sym__type_declarator, + STATE(1883), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(891), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(986), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2866), 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(1376), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -88571,41 +88502,606 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34856] = 3, + anon_sym__Nonnull, + [33686] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2404), 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(2406), 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, + [33745] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2352), 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(2354), 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, + [33804] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2705), 1, + anon_sym_EQ, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(2878), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2880), 1, + anon_sym_AMP_AMP, + ACTIONS(2882), 1, + anon_sym_PIPE, + ACTIONS(2884), 1, + anon_sym_CARET, + ACTIONS(2886), 1, + anon_sym_AMP, + ACTIONS(2896), 1, + anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2888), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2890), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2703), 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, + [33887] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 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(2406), 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, + [33948] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2404), 1, + anon_sym_EQ, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(2880), 1, + anon_sym_AMP_AMP, + ACTIONS(2882), 1, + anon_sym_PIPE, + ACTIONS(2884), 1, + anon_sym_CARET, + ACTIONS(2886), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2888), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2890), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2406), 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, + [34027] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2404), 1, + anon_sym_EQ, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(2882), 1, + anon_sym_PIPE, + ACTIONS(2884), 1, + anon_sym_CARET, + ACTIONS(2886), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2888), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2890), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2406), 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, + [34104] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(2884), 1, + anon_sym_CARET, + ACTIONS(2886), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2404), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2888), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2890), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2406), 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, + [34179] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(2886), 1, + anon_sym_AMP, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2888), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2890), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2406), 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, + [34252] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2888), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2890), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2406), 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, + [34323] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2890), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2892), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2404), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2406), 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, + [34392] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2388), 14, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2872), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2894), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2874), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2404), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2390), 24, + ACTIONS(2406), 19, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -88618,13 +89114,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [34902] = 3, + [34457] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2352), 14, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2376), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88638,17 +89141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2354), 24, + ACTIONS(2378), 21, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -88663,56 +89163,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [34948] = 18, + [34514] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(999), 1, + STATE(993), 1, sym_ms_unaligned_ptr_modifier, - STATE(1320), 1, + STATE(1323), 1, sym__type_declarator, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2789), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(964), 2, + STATE(954), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(983), 2, + STATE(987), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -88722,10 +89221,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35024] = 3, + anon_sym__Nonnull, + [34591] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 14, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2384), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88739,17 +89252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2350), 24, + ACTIONS(2386), 19, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -88762,26 +89272,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [35070] = 5, + [34650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2598), 1, - anon_sym_EQ, - ACTIONS(2600), 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(1724), 13, + ACTIONS(2900), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2898), 35, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88794,8 +89331,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(1718), 14, + ACTIONS(2350), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -88807,117 +89345,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [35120] = 18, + [34742] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2579), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2902), 1, + anon_sym_COMMA, + ACTIONS(2905), 1, + anon_sym_RPAREN, + STATE(754), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1565), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1729), 2, anon_sym_STAR, - ACTIONS(2896), 1, - sym_primitive_type, - STATE(707), 1, - sym_alignas_qualifier, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1315), 1, - sym__type_declarator, - STATE(1914), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2789), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(964), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(986), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2894), 4, + anon_sym_LBRACK_LBRACK, + ACTIONS(1731), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, + ACTIONS(1716), 27, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [35196] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - ACTIONS(2896), 1, - sym_primitive_type, - STATE(707), 1, - sym_alignas_qualifier, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1326), 1, - sym__type_declarator, - STATE(1914), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2789), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(894), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(990), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2894), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1390), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 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, @@ -88926,68 +89403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35272] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - ACTIONS(2896), 1, - sym_primitive_type, - STATE(707), 1, - sym_alignas_qualifier, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1315), 1, - sym__type_declarator, - STATE(1914), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2789), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(891), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(986), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2894), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1390), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 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, - [35348] = 3, + sym_identifier, + [34800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 14, + ACTIONS(2364), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89002,7 +89425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2368), 24, + ACTIONS(2366), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -89027,56 +89450,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [35394] = 3, + [34846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 3, - anon_sym_LPAREN2, + ACTIONS(2749), 1, + anon_sym_EQ, + ACTIONS(2751), 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(1724), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2898), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - 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_DOT, + ACTIONS(1718), 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_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [35439] = 6, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(2396), 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, - ACTIONS(2902), 1, - anon_sym_SEMI, - ACTIONS(1737), 10, + anon_sym_DOT, + ACTIONS(2398), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89087,7 +89535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1724), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2380), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89100,7 +89554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1718), 13, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2382), 24, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89109,26 +89566,81 @@ 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, - [35490] = 9, + [34988] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 1, + ACTIONS(2579), 1, anon_sym_LPAREN2, - ACTIONS(2904), 1, + STATE(754), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1729), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(2908), 2, anon_sym_COMMA, - ACTIONS(2907), 1, anon_sym_RPAREN, - STATE(752), 1, + ACTIONS(1731), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1716), 27, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [35041] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_LPAREN2, + ACTIONS(2918), 1, + anon_sym_LBRACK, + STATE(754), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1530), 1, - aux_sym__old_style_parameter_list_repeat1, ACTIONS(1729), 2, + anon_sym_COMMA, anon_sym_STAR, + ACTIONS(2911), 2, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, ACTIONS(1731), 4, anon_sym_signed, @@ -89141,7 +89653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89159,54 +89670,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [35547] = 3, + [35096] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1163), 17, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(2921), 1, + anon_sym_SEMI, + ACTIONS(1737), 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(1724), 12, 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(1165), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1718), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [35591] = 3, + anon_sym_DOT, + anon_sym_DASH_GT, + [35147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1163), 17, + ACTIONS(1187), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -89224,7 +89740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1165), 19, + ACTIONS(1189), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -89244,101 +89760,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35635] = 8, + [35191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_LPAREN2, - ACTIONS(2917), 1, - anon_sym_LBRACK, - STATE(752), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1729), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(2910), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1731), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1716), 25, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(1195), 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, - [35689] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2527), 1, + ACTIONS(1197), 19, anon_sym_LPAREN2, - STATE(752), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1729), 2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(2920), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1731), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1716), 26, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - [35741] = 3, + 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, + [35235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 17, + ACTIONS(1199), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -89356,7 +89822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1185), 19, + ACTIONS(1201), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -89376,10 +89842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35785] = 3, + [35279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 17, + ACTIONS(1199), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -89397,7 +89863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1185), 19, + ACTIONS(1201), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -89417,10 +89883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35829] = 3, + [35323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 17, + ACTIONS(1227), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -89438,7 +89904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1237), 19, + ACTIONS(1229), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -89458,10 +89924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35873] = 3, + [35367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 17, + ACTIONS(1231), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -89479,7 +89945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1189), 19, + ACTIONS(1233), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -89499,10 +89965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35917] = 3, + [35411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 17, + ACTIONS(1243), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -89520,7 +89986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1189), 19, + ACTIONS(1245), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -89540,10 +90006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [35961] = 3, + [35455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 17, + ACTIONS(1231), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -89561,7 +90027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1217), 19, + ACTIONS(1233), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -89581,10 +90047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [36005] = 3, + [35499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1219), 17, + ACTIONS(1195), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -89602,7 +90068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1221), 19, + ACTIONS(1197), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -89622,10 +90088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [36049] = 3, + [35543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1219), 17, + ACTIONS(1187), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -89643,7 +90109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1221), 19, + ACTIONS(1189), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -89663,13 +90129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [36093] = 3, + [35587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 2, + ACTIONS(1197), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1219), 32, + ACTIONS(1195), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89695,6 +90161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -89702,14 +90169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36135] = 4, + [35630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, + ACTIONS(2925), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2923), 1, - anon_sym_typedef, - ACTIONS(2404), 32, + anon_sym_LBRACE, + ACTIONS(2923), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89735,6 +90201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -89742,13 +90209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36179] = 3, + [35673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 2, + ACTIONS(1201), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2925), 32, + ACTIONS(1199), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89774,6 +90241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -89781,114 +90249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36221] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1907), 1, - anon_sym_LPAREN2, - ACTIONS(1909), 1, - anon_sym_STAR, - ACTIONS(2787), 1, - sym_ms_restrict_modifier, - ACTIONS(2791), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1423), 1, - sym__abstract_declarator, - STATE(1447), 1, - sym_parameter_list, - ACTIONS(2931), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2933), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2935), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(964), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1076), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2785), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2929), 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, - [36293] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_LPAREN2, - ACTIONS(1781), 1, - anon_sym_STAR, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2783), 1, - sym_identifier, - ACTIONS(2791), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - STATE(1262), 1, - sym__declarator, - STATE(1423), 1, - sym__abstract_declarator, - STATE(1447), 1, - sym_parameter_list, - STATE(1926), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2785), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(981), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 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, - [36363] = 17, + [35716] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1779), 1, @@ -89897,41 +90258,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2791), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1267), 1, + STATE(1265), 1, sym__declarator, - STATE(1404), 1, + STATE(1403), 1, sym__abstract_declarator, - STATE(1447), 1, + STATE(1437), 1, sym_parameter_list, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2937), 2, + ACTIONS(2927), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1445), 4, + STATE(1455), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -89941,14 +90302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36433] = 4, + anon_sym__Nonnull, + [35787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, + ACTIONS(1197), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2939), 1, - anon_sym_typedef, - ACTIONS(2404), 32, + anon_sym_LBRACE, + ACTIONS(1195), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89974,6 +90335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -89981,67 +90343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36477] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1907), 1, - anon_sym_LPAREN2, - ACTIONS(1909), 1, - anon_sym_STAR, - ACTIONS(2787), 1, - sym_ms_restrict_modifier, - ACTIONS(2791), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1431), 1, - sym__abstract_declarator, - STATE(1447), 1, - sym_parameter_list, - ACTIONS(2931), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2933), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2935), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(916), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1073), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2804), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2929), 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, - [36549] = 3, + [35830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 2, + ACTIONS(1189), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2941), 32, + ACTIONS(1187), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90067,6 +90375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90074,13 +90383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36591] = 3, + [35873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 2, + ACTIONS(1229), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1183), 32, + ACTIONS(1227), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90106,6 +90415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90113,13 +90423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36633] = 3, + [35916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1185), 2, + ACTIONS(2402), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1183), 32, + ACTIONS(2929), 1, + anon_sym_typedef, + ACTIONS(2400), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90145,6 +90456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90152,13 +90464,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36675] = 3, + [35961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 2, + ACTIONS(1201), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1187), 32, + ACTIONS(1199), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90184,6 +90496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90191,13 +90504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36717] = 3, + [36004] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1187), 32, + ACTIONS(1187), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90223,6 +90536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90230,13 +90544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36759] = 3, + [36047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 2, + ACTIONS(1233), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1215), 32, + ACTIONS(1231), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90262,6 +90576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90269,14 +90584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36801] = 4, + [36090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, + ACTIONS(1233), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2945), 1, - anon_sym_typedef, - ACTIONS(2404), 32, + anon_sym_LBRACE, + ACTIONS(1231), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90302,6 +90616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90309,13 +90624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36845] = 3, + [36133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1237), 2, + ACTIONS(2402), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1235), 32, + ACTIONS(2931), 1, + anon_sym_typedef, + ACTIONS(2400), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90341,6 +90657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90348,13 +90665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36887] = 3, + [36178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 2, + ACTIONS(1245), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1219), 32, + ACTIONS(1243), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90380,6 +90697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90387,13 +90705,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36929] = 3, + [36221] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + STATE(1273), 1, + sym__declarator, + STATE(1401), 1, + sym__abstract_declarator, + STATE(1437), 1, + sym_parameter_list, + STATE(1813), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2796), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(982), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [36292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 2, + ACTIONS(2935), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2818), 32, + ACTIONS(2933), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90419,6 +90791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90426,14 +90799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36971] = 4, + [36335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, + ACTIONS(2937), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2949), 1, - anon_sym_typedef, - ACTIONS(2404), 32, + anon_sym_LBRACE, + ACTIONS(2823), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90459,6 +90831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90466,13 +90839,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37015] = 3, + [36378] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1897), 1, + anon_sym_LPAREN2, + ACTIONS(1899), 1, + anon_sym_STAR, + ACTIONS(2798), 1, + sym_ms_restrict_modifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + STATE(993), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1401), 1, + sym__abstract_declarator, + STATE(1437), 1, + sym_parameter_list, + ACTIONS(2941), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2943), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2945), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(954), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1062), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2796), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2939), 9, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [36451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 2, + ACTIONS(2402), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1163), 32, + ACTIONS(2947), 1, + anon_sym_typedef, + ACTIONS(2400), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90498,6 +90927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90505,13 +90935,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37057] = 3, + [36496] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1897), 1, + anon_sym_LPAREN2, + ACTIONS(1899), 1, + anon_sym_STAR, + ACTIONS(2798), 1, + sym_ms_restrict_modifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + STATE(993), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1431), 1, + sym__abstract_declarator, + STATE(1437), 1, + sym_parameter_list, + ACTIONS(2941), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2943), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(2945), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(930), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1066), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2804), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2939), 9, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [36569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 2, + ACTIONS(2402), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1163), 32, + ACTIONS(2949), 1, + anon_sym_typedef, + ACTIONS(2400), 33, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -90537,6 +91023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, @@ -90544,95 +91031,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37099] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2955), 1, - anon_sym_SLASH, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2376), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2378), 14, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - sym_identifier, - [37158] = 16, + [36614] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(999), 1, + STATE(993), 1, sym_ms_unaligned_ptr_modifier, - STATE(1262), 1, + STATE(1273), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2789), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(964), 2, + STATE(954), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1086), 2, + STATE(1082), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -90642,157 +91082,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37225] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2955), 1, - anon_sym_SLASH, - ACTIONS(2965), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2969), 1, - anon_sym_AMP_AMP, - ACTIONS(2971), 1, - anon_sym_PIPE, - ACTIONS(2973), 1, - anon_sym_CARET, - ACTIONS(2975), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2979), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2981), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2963), 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, - [37302] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2376), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2955), 1, - anon_sym_SLASH, - ACTIONS(2971), 1, - anon_sym_PIPE, - ACTIONS(2973), 1, - anon_sym_CARET, - ACTIONS(2975), 1, - anon_sym_AMP, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2979), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2981), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2378), 9, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - sym_identifier, - [37373] = 16, + anon_sym__Nonnull, + [36682] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(999), 1, + STATE(993), 1, sym_ms_unaligned_ptr_modifier, - STATE(1262), 1, + STATE(1265), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2789), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(947), 2, + STATE(954), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1086), 2, + STATE(1088), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -90802,100 +91134,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37440] = 17, + anon_sym__Nonnull, + [36750] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, + ACTIONS(1783), 1, + anon_sym___based, ACTIONS(2955), 1, - anon_sym_SLASH, - ACTIONS(2973), 1, - anon_sym_CARET, - ACTIONS(2975), 1, - anon_sym_AMP, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2979), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2981), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2378), 9, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [37509] = 16, + ACTIONS(2957), 1, + anon_sym_LPAREN2, + ACTIONS(2959), 1, + anon_sym_STAR, + STATE(709), 1, + sym_alignas_qualifier, + STATE(993), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1305), 1, + sym__field_declarator, + STATE(1895), 1, + sym_ms_based_modifier, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2800), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(938), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1089), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2798), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1363), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [36818] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(999), 1, + STATE(993), 1, sym_ms_unaligned_ptr_modifier, - STATE(1270), 1, + STATE(1273), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2789), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(935), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1084), 2, + STATE(1082), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -90905,38 +91238,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37576] = 16, + anon_sym__Nonnull, + [36886] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2959), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(999), 1, + STATE(993), 1, sym_ms_unaligned_ptr_modifier, - STATE(1288), 1, + STATE(1297), 1, sym__field_declarator, - STATE(1767), 1, + STATE(1895), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2789), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(964), 2, + STATE(954), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1087), 2, + STATE(1083), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -90946,7 +91280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -90956,99 +91290,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37643] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2955), 1, - anon_sym_SLASH, - ACTIONS(2975), 1, - anon_sym_AMP, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2979), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2981), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2378), 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, - [37710] = 16, + anon_sym__Nonnull, + [36954] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(999), 1, + STATE(993), 1, sym_ms_unaligned_ptr_modifier, - STATE(1288), 1, - sym__field_declarator, - STATE(1767), 1, + STATE(1263), 1, + sym__declarator, + STATE(1813), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2789), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(951), 2, + STATE(934), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1087), 2, + STATE(1085), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1363), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -91058,203 +91342,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37777] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2955), 1, - anon_sym_SLASH, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2979), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2981), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2376), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2378), 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, - [37842] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2604), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2955), 1, - anon_sym_SLASH, - ACTIONS(2967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2969), 1, - anon_sym_AMP_AMP, - ACTIONS(2971), 1, - anon_sym_PIPE, - ACTIONS(2973), 1, - anon_sym_CARET, - ACTIONS(2975), 1, - anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2979), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2981), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2602), 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, - [37919] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2955), 1, - anon_sym_SLASH, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2979), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2981), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2376), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2378), 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, - [37982] = 16, + anon_sym__Nonnull, + [37022] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2959), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(999), 1, + STATE(993), 1, sym_ms_unaligned_ptr_modifier, - STATE(1267), 1, - sym__declarator, - STATE(1926), 1, + STATE(1297), 1, + sym__field_declarator, + STATE(1895), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2789), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(964), 2, + STATE(941), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1089), 2, + STATE(1083), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + STATE(1363), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -91264,38 +91394,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38049] = 16, + anon_sym__Nonnull, + [37090] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2959), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(999), 1, + STATE(993), 1, sym_ms_unaligned_ptr_modifier, - STATE(1300), 1, + STATE(1291), 1, sym__field_declarator, - STATE(1767), 1, + STATE(1895), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2789), 2, + ACTIONS(2800), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(941), 2, + STATE(954), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1088), 2, + STATE(1084), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, + ACTIONS(2798), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -91305,7 +91436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -91315,27 +91446,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [38116] = 10, + anon_sym__Nonnull, + [37158] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2955), 1, + ACTIONS(2963), 1, anon_sym_SLASH, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2953), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2376), 7, + ACTIONS(2404), 7, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91343,7 +91475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2378), 16, + ACTIONS(2406), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -91360,36 +91492,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [38171] = 11, + [37213] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2955), 1, + ACTIONS(2404), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2963), 1, anon_sym_SLASH, - STATE(675), 1, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2376), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2973), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2378), 16, + ACTIONS(2977), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2406), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -91397,262 +91543,248 @@ 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_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [38228] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2985), 1, - sym_identifier, - ACTIONS(2987), 1, - anon_sym_LPAREN2, - ACTIONS(2989), 1, - anon_sym_STAR, - STATE(707), 1, - sym_alignas_qualifier, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1294), 1, - sym__field_declarator, - STATE(1767), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2789), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(964), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1085), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1363), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 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, - [38295] = 21, + [37284] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2636), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2955), 1, + ACTIONS(2963), 1, anon_sym_SLASH, - ACTIONS(2967), 1, - anon_sym_PIPE_PIPE, ACTIONS(2969), 1, - anon_sym_AMP_AMP, - ACTIONS(2971), 1, - anon_sym_PIPE, - ACTIONS(2973), 1, anon_sym_CARET, - ACTIONS(2975), 1, + ACTIONS(2971), 1, anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2404), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2977), 2, + ACTIONS(2965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2979), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2981), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2634), 6, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2406), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, sym_identifier, - [38372] = 21, + [37353] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2632), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2955), 1, + ACTIONS(2963), 1, anon_sym_SLASH, - ACTIONS(2967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2969), 1, - anon_sym_AMP_AMP, ACTIONS(2971), 1, - anon_sym_PIPE, - ACTIONS(2973), 1, - anon_sym_CARET, - ACTIONS(2975), 1, anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2404), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2977), 2, + ACTIONS(2965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2979), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2981), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2630), 6, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2406), 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, - [38449] = 19, + [37420] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2376), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2955), 1, + ACTIONS(2963), 1, anon_sym_SLASH, - ACTIONS(2969), 1, - anon_sym_AMP_AMP, - ACTIONS(2971), 1, - anon_sym_PIPE, - ACTIONS(2973), 1, - anon_sym_CARET, - ACTIONS(2975), 1, - anon_sym_AMP, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2953), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2957), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2977), 2, + ACTIONS(2965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2979), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2981), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2378), 8, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2406), 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, - [38522] = 10, + [37485] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2963), 1, anon_sym_SLASH, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2975), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2977), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2406), 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, + [37548] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_SLASH, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2376), 6, + ACTIONS(2965), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 5, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2378), 16, + ACTIONS(2406), 14, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -91660,44 +91792,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [38576] = 11, + sym_identifier, + [37607] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2963), 1, anon_sym_SLASH, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2376), 4, + ACTIONS(2404), 5, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2378), 16, + ACTIONS(2406), 16, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -91707,457 +91838,571 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [38632] = 18, + sym_identifier, + [37664] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2733), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2963), 1, + anon_sym_SLASH, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2965), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2973), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2975), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2977), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2979), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2731), 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, + [37741] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2737), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2963), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(2967), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(2969), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(2971), 1, anon_sym_AMP, - STATE(675), 1, + ACTIONS(2981), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_QMARK, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 8, + ACTIONS(2735), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [38702] = 17, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [37818] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2963), 1, anon_sym_SLASH, - ACTIONS(2999), 1, + ACTIONS(2967), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(2969), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(2971), 1, anon_sym_AMP, - STATE(675), 1, + ACTIONS(2981), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_QMARK, + ACTIONS(2989), 1, + aux_sym_preproc_elif_token1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 9, + ACTIONS(2987), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [38770] = 15, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [37895] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2705), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2963), 1, anon_sym_SLASH, - STATE(675), 1, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, + anon_sym_CARET, + ACTIONS(2971), 1, + anon_sym_AMP, + ACTIONS(2981), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + ACTIONS(2985), 1, + anon_sym_QMARK, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2991), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 10, + ACTIONS(2703), 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, + [37972] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(993), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(2998), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(954), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2995), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2993), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - [38834] = 17, + ACTIONS(2991), 19, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [38021] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2376), 1, - anon_sym_PIPE, - ACTIONS(2993), 1, + ACTIONS(2404), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2963), 1, anon_sym_SLASH, - ACTIONS(3001), 1, + ACTIONS(2967), 1, + anon_sym_PIPE, + ACTIONS(2969), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(2971), 1, anon_sym_AMP, - STATE(675), 1, + ACTIONS(2983), 1, + anon_sym_AMP_AMP, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2961), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2965), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(2973), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(2975), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(2977), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(2979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 9, + ACTIONS(2406), 8, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [38902] = 20, + sym_identifier, + [38094] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_struct, + ACTIONS(57), 1, + anon_sym_union, + ACTIONS(1696), 1, + anon_sym_enum, + ACTIONS(1849), 1, + sym_identifier, + STATE(709), 1, + sym_alignas_qualifier, + STATE(1060), 1, + sym_type_specifier, + STATE(1090), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1949), 1, + sym_type_descriptor, + ACTIONS(49), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(983), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1694), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(764), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [38158] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3005), 1, + anon_sym_SLASH, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2634), 6, + ACTIONS(2406), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [38976] = 20, + anon_sym_QMARK, + [38226] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2602), 6, + ACTIONS(2735), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [39050] = 20, + [38300] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2404), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2630), 6, + ACTIONS(2406), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [39124] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(999), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3024), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(964), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3021), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3019), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3017), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [39172] = 16, + anon_sym_QMARK, + [38364] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2376), 1, + ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 10, + ACTIONS(2406), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -92168,38 +92413,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [39238] = 12, + [38430] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2404), 6, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3011), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2376), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2378), 14, + ACTIONS(2406), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -92209,47 +92450,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [39296] = 14, + [38484] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3007), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 12, + ACTIONS(2404), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2406), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -92257,50 +92496,52 @@ 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_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [39358] = 15, + [38542] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(3027), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3031), 1, - sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1093), 1, + STATE(1060), 1, sym_type_specifier, - STATE(1102), 1, + STATE(1090), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1236), 1, - sym__type_definition_type, + STATE(1848), 1, + sym_type_descriptor, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(989), 2, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3029), 4, + ACTIONS(1694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92310,45 +92551,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39421] = 15, + anon_sym__Nonnull, + [38606] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_SLASH, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2404), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2406), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [38662] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, ACTIONS(1696), 1, anon_sym_enum, - ACTIONS(1849), 1, + ACTIONS(3027), 1, sym_identifier, - STATE(707), 1, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(709), 1, sym_alignas_qualifier, - STATE(1074), 1, + STATE(1095), 1, sym_type_specifier, - STATE(1091), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1794), 1, - sym_type_descriptor, + STATE(1237), 1, + sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(982), 2, + STATE(981), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1694), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92358,7 +92645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39484] = 15, + anon_sym__Nonnull, + [38726] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -92371,18 +92659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1074), 1, + STATE(1060), 1, sym_type_specifier, - STATE(1091), 1, + STATE(1090), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1822), 1, + STATE(1861), 1, sym_type_descriptor, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(982), 2, + STATE(983), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1694), 4, @@ -92390,13 +92678,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92406,45 +92694,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39547] = 15, + anon_sym__Nonnull, + [38790] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1849), 1, - sym_identifier, - ACTIONS(3033), 1, + ACTIONS(1696), 1, anon_sym_enum, - STATE(707), 1, + ACTIONS(3027), 1, + sym_identifier, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(709), 1, sym_alignas_qualifier, - STATE(1074), 1, + STATE(1095), 1, sym_type_specifier, - STATE(1091), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1840), 1, - sym_type_descriptor, + STATE(1236), 1, + sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(988), 2, + STATE(981), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1694), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92454,7 +92743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39610] = 15, + anon_sym__Nonnull, + [38854] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -92463,22 +92753,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1696), 1, - anon_sym_enum, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + ACTIONS(3033), 1, + anon_sym_enum, + STATE(709), 1, sym_alignas_qualifier, - STATE(1074), 1, + STATE(1060), 1, sym_type_specifier, - STATE(1091), 1, + STATE(1090), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1759), 1, + STATE(1962), 1, sym_type_descriptor, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(982), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1694), 4, @@ -92486,13 +92776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92502,7 +92792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39673] = 15, + anon_sym__Nonnull, + [38918] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -92515,18 +92806,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3031), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1093), 1, + STATE(1095), 1, sym_type_specifier, - STATE(1102), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1233), 1, + STATE(1235), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(989), 2, + STATE(981), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3029), 4, @@ -92534,13 +92825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92550,45 +92841,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39736] = 15, + anon_sym__Nonnull, + [38982] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_SLASH, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2406), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39050] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1849), 1, - sym_identifier, - ACTIONS(3033), 1, + ACTIONS(1696), 1, anon_sym_enum, - STATE(707), 1, + ACTIONS(3027), 1, + sym_identifier, + ACTIONS(3031), 1, + sym_primitive_type, + STATE(709), 1, sym_alignas_qualifier, - STATE(1074), 1, + STATE(1095), 1, sym_type_specifier, - STATE(1091), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1968), 1, - sym_type_descriptor, + STATE(1233), 1, + sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(988), 2, + STATE(981), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1694), 4, + ACTIONS(3029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92598,7 +92941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39799] = 15, + anon_sym__Nonnull, + [39114] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -92611,18 +92955,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3031), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1093), 1, + STATE(1095), 1, sym_type_specifier, - STATE(1102), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, STATE(1238), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(989), 2, + STATE(981), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3029), 4, @@ -92630,13 +92974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92646,7 +92990,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39862] = 15, + anon_sym__Nonnull, + [39178] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_SLASH, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2406), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39248] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -92659,18 +93056,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3031), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1093), 1, + STATE(1095), 1, sym_type_specifier, - STATE(1102), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, STATE(1239), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(989), 2, + STATE(981), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3029), 4, @@ -92678,13 +93075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92694,7 +93091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39925] = 15, + anon_sym__Nonnull, + [39312] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -92707,18 +93105,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3031), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1093), 1, + STATE(1095), 1, sym_type_specifier, - STATE(1102), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1234), 1, + STATE(1240), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(989), 2, + STATE(981), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3029), 4, @@ -92726,13 +93124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92742,7 +93140,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [39988] = 15, + anon_sym__Nonnull, + [39376] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_SLASH, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2731), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [39450] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -92755,18 +93208,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3031), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1093), 1, + STATE(1095), 1, sym_type_specifier, - STATE(1102), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1240), 1, + STATE(1234), 1, sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(989), 2, + STATE(981), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3029), 4, @@ -92774,13 +93227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92790,45 +93243,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40051] = 15, + anon_sym__Nonnull, + [39514] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_SLASH, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2404), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2406), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [39576] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + sym_primitive_type, ACTIONS(55), 1, anon_sym_struct, ACTIONS(57), 1, anon_sym_union, - ACTIONS(1696), 1, - anon_sym_enum, - ACTIONS(3027), 1, + ACTIONS(1849), 1, sym_identifier, - ACTIONS(3031), 1, - sym_primitive_type, - STATE(707), 1, + ACTIONS(3033), 1, + anon_sym_enum, + STATE(709), 1, sym_alignas_qualifier, - STATE(1093), 1, + STATE(1060), 1, sym_type_specifier, - STATE(1102), 1, + STATE(1090), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1235), 1, - sym__type_definition_type, + STATE(1915), 1, + sym_type_descriptor, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(989), 2, + STATE(985), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3029), 4, + ACTIONS(1694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92838,7 +93340,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40114] = 15, + anon_sym__Nonnull, + [39640] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_SLASH, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2703), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [39714] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(55), 1, @@ -92851,18 +93408,16 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3031), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, STATE(1093), 1, sym_type_specifier, - STATE(1102), 1, + STATE(1105), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1237), 1, - sym__type_definition_type, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(989), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3029), 4, @@ -92870,13 +93425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -92886,15 +93441,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40177] = 7, + anon_sym__Nonnull, + [39775] = 7, ACTIONS(3), 1, sym_comment, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, ACTIONS(3042), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3037), 6, @@ -92904,16 +93460,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3039), 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(3035), 10, anon_sym___based, anon_sym_signed, @@ -92925,7 +93471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40223] = 14, + ACTIONS(3039), 10, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [39822] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -92938,16 +93495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(1849), 1, sym_identifier, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1082), 1, + STATE(1071), 1, sym_type_specifier, - STATE(1091), 1, + STATE(1090), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1694), 4, @@ -92955,59 +93512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 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, - [40283] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - ACTIONS(2896), 1, - sym_primitive_type, - STATE(707), 1, - sym_alignas_qualifier, - STATE(1313), 1, - sym__type_declarator, - STATE(1914), 1, - sym_ms_based_modifier, - ACTIONS(49), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(981), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2894), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1390), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -93017,113 +93528,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3045), 11, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3047), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [40381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 11, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3051), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [40419] = 14, + anon_sym__Nonnull, + [39883] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1320), 1, + STATE(1316), 1, sym__type_declarator, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -93133,60 +93575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40479] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3007), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3011), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3055), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [40553] = 14, + anon_sym__Nonnull, + [39944] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -93199,16 +93589,16 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3033), 1, anon_sym_enum, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1082), 1, + STATE(1071), 1, sym_type_specifier, - STATE(1091), 1, + STATE(1090), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1694), 4, @@ -93216,13 +93606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, + STATE(764), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -93232,43 +93622,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40613] = 14, + anon_sym__Nonnull, + [40005] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1696), 1, - anon_sym_enum, - ACTIONS(3027), 1, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(3031), 1, + ACTIONS(2862), 1, + anon_sym_LPAREN2, + ACTIONS(2864), 1, + anon_sym_STAR, + ACTIONS(2868), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1096), 1, - sym_type_specifier, - STATE(1102), 1, - aux_sym_sized_type_specifier_repeat1, + STATE(1323), 1, + sym__type_declarator, + STATE(1883), 1, + sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3029), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(756), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, + STATE(1376), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -93278,43 +93669,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40673] = 14, + anon_sym__Nonnull, + [40066] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1315), 1, + STATE(1326), 1, sym__type_declarator, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -93324,405 +93716,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [40733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 11, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3059), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [40771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 11, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3063), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [40809] = 22, + anon_sym__Nonnull, + [40127] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_COMMA, - ACTIONS(3067), 1, - anon_sym_RPAREN, - STATE(675), 1, - sym_argument_list, - STATE(1640), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3007), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3011), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40884] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3069), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3071), 1, - anon_sym_RPAREN, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - STATE(1628), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3007), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3011), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40959] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, - anon_sym_COMMA, - ACTIONS(3073), 1, - anon_sym_RPAREN, - STATE(675), 1, - sym_argument_list, - STATE(1621), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2364), 2, + ACTIONS(2362), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41034] = 22, + ACTIONS(3047), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [40201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3049), 11, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3051), 19, anon_sym_COMMA, - ACTIONS(3075), 1, anon_sym_RPAREN, - STATE(675), 1, - sym_argument_list, - STATE(1626), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + anon_sym_LPAREN2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41109] = 22, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3053), 11, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3077), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3055), 19, anon_sym_COMMA, - ACTIONS(3079), 1, - anon_sym_RBRACE, - STATE(675), 1, - sym_argument_list, - STATE(1567), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41184] = 22, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3057), 11, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3065), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3059), 19, anon_sym_COMMA, - ACTIONS(3081), 1, anon_sym_RPAREN, - STATE(675), 1, - sym_argument_list, - STATE(1622), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + anon_sym_LPAREN2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41259] = 3, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 6, + ACTIONS(3063), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3083), 23, + ACTIONS(3061), 24, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -93742,21 +93905,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [41296] = 3, + [40353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 6, + ACTIONS(3067), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3087), 23, + ACTIONS(3065), 24, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -93776,3669 +93940,3794 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [41333] = 20, + [40391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3069), 11, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3071), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3009), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3091), 3, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - [41404] = 21, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [40429] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2634), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41476] = 17, + ACTIONS(3073), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [40500] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2376), 1, - anon_sym_PIPE, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3107), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, anon_sym_AMP, - STATE(675), 1, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3075), 1, + anon_sym_COMMA, + ACTIONS(3077), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + STATE(1631), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [41540] = 16, + [40575] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - STATE(675), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_COMMA, + ACTIONS(3081), 1, + anon_sym_RBRACE, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + STATE(1573), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [41602] = 15, + [40650] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - STATE(675), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_COMMA, + ACTIONS(3085), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + STATE(1560), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2376), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3111), 2, + ACTIONS(3011), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 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, - [41662] = 13, + [40725] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(3087), 1, + anon_sym_COLON, + STATE(749), 1, + sym_attribute_specifier, + STATE(1063), 1, + sym_enumerator_list, + ACTIONS(2761), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, - anon_sym_SLASH, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3095), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2376), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2378), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [41718] = 12, + anon_sym_LBRACK, + ACTIONS(2759), 19, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [40772] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2766), 1, + anon_sym_LBRACE, + STATE(766), 1, + sym_attribute_specifier, + STATE(1078), 1, + sym_enumerator_list, + ACTIONS(2832), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, + anon_sym_COLON, + ACTIONS(2830), 19, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [40817] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - STATE(675), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_COMMA, + ACTIONS(3089), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + STATE(1588), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2376), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2378), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [41772] = 20, + [40892] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3083), 1, + anon_sym_COMMA, + ACTIONS(3091), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + STATE(1605), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3119), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [41842] = 21, + [40967] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3083), 1, anon_sym_COMMA, - ACTIONS(3121), 1, - anon_sym_COLON, - STATE(675), 1, + ACTIONS(3093), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + STATE(1540), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41914] = 20, + [41042] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3095), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3123), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41984] = 21, + [41114] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3097), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2630), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42056] = 21, + [41186] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3125), 1, - anon_sym_RPAREN, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42128] = 21, + ACTIONS(3099), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41256] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3127), 1, + ACTIONS(3101), 1, anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42200] = 21, + [41328] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3129), 1, + ACTIONS(3103), 1, anon_sym_RPAREN, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42272] = 22, + [41400] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3131), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3133), 1, - anon_sym_RBRACK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3105), 1, + anon_sym_SEMI, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42346] = 20, + [41472] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3107), 1, + anon_sym_SEMI, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3135), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42416] = 21, + [41544] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3137), 1, + ACTIONS(3109), 1, anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42488] = 21, + [41616] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3139), 1, + ACTIONS(3111), 1, anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42560] = 21, + [41688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3141), 1, + ACTIONS(3113), 1, anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42632] = 21, + [41760] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3143), 1, - anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2703), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42704] = 21, + [41832] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3145), 1, - anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, + ACTIONS(3117), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2404), 6, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3007), 2, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(2406), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42776] = 8, + anon_sym_RBRACK, + anon_sym_QMARK, + [41884] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2800), 1, - anon_sym_LBRACE, - ACTIONS(3147), 1, - anon_sym_COLON, - STATE(749), 1, - sym_attribute_specifier, - STATE(1080), 1, - sym_enumerator_list, - ACTIONS(2795), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2793), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [42822] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3149), 1, - anon_sym_COLON, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42894] = 21, + ACTIONS(2406), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [41952] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3151), 1, - anon_sym_COLON, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42966] = 21, + ACTIONS(2406), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [42018] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, - anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, + anon_sym_SLASH, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3153), 1, - anon_sym_RPAREN, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43038] = 18, + ACTIONS(2406), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [42084] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2364), 1, + ACTIONS(2362), 1, anon_sym_DASH_GT, - ACTIONS(2376), 1, + ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2837), 1, + ACTIONS(2870), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, + ACTIONS(2876), 1, anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, + ACTIONS(3129), 1, anon_sym_AMP, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3117), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 5, + ACTIONS(2406), 6, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [43104] = 21, + [42148] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3155), 1, - anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2404), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43176] = 21, + ACTIONS(2406), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [42210] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, - anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3157), 1, - anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2404), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43248] = 21, + ACTIONS(2406), 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, + [42270] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3115), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3137), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2404), 4, anon_sym_PIPE, - ACTIONS(3001), 1, - anon_sym_CARET, - ACTIONS(3003), 1, anon_sym_AMP, - ACTIONS(3013), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2406), 10, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3159), 1, - anon_sym_SEMI, - STATE(675), 1, - sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, + [42326] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2362), 1, anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, + anon_sym_SLASH, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2404), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(2406), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43320] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [42380] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3161), 1, - anon_sym_RPAREN, - STATE(675), 1, + ACTIONS(3141), 1, + anon_sym_SEMI, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43392] = 20, + [42452] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3143), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3163), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43462] = 20, + [42524] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2731), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3165), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [43532] = 20, + [42596] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3145), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2963), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43602] = 20, + [42668] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2362), 1, + anon_sym_DASH_GT, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(2876), 1, + anon_sym_DOT, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + anon_sym_PLUS_PLUS, + ACTIONS(2735), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3167), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43672] = 21, + [42740] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3169), 1, - anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43744] = 21, + ACTIONS(3147), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [42810] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3171), 1, + ACTIONS(3149), 1, anon_sym_COLON, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43816] = 21, + [42882] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3173), 1, - anon_sym_RPAREN, - STATE(675), 1, + ACTIONS(3151), 1, + anon_sym_SEMI, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43888] = 21, + [42954] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3175), 1, - anon_sym_COLON, - STATE(675), 1, + ACTIONS(3153), 1, + anon_sym_SEMI, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43960] = 21, + [43026] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3177), 1, + ACTIONS(3155), 1, anon_sym_RPAREN, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44032] = 21, + [43098] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3179), 1, - anon_sym_SEMI, - STATE(675), 1, + ACTIONS(3157), 1, + anon_sym_COLON, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44104] = 21, + [43170] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2364), 1, + ACTIONS(2362), 1, anon_sym_DASH_GT, - ACTIONS(2837), 1, + ACTIONS(2870), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, + ACTIONS(2876), 1, anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3121), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3107), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3159), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3161), 1, + anon_sym_RBRACK, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2602), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3093), 2, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3117), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44176] = 21, + [43244] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3181), 1, - anon_sym_RPAREN, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44248] = 21, + ACTIONS(3163), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43314] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3183), 1, - anon_sym_RPAREN, - STATE(675), 1, + ACTIONS(3165), 1, + anon_sym_SEMI, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44320] = 21, + [43386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - ACTIONS(3185), 1, - anon_sym_COLON, - STATE(675), 1, + ACTIONS(3167), 1, + anon_sym_SEMI, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44392] = 7, + [43458] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2800), 1, - anon_sym_LBRACE, - STATE(775), 1, - sym_attribute_specifier, - STATE(1077), 1, - sym_enumerator_list, - ACTIONS(2808), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2356), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2806), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [44436] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - STATE(675), 1, - sym_argument_list, - ACTIONS(2374), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2376), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2378), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [44488] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, - anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, - anon_sym_SLASH, - ACTIONS(3101), 1, - anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - STATE(675), 1, + ACTIONS(3025), 1, + anon_sym_QMARK, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [44556] = 18, + ACTIONS(3169), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [43528] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2364), 1, - anon_sym_DASH_GT, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2859), 1, - anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3103), 1, - anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3107), 1, + ACTIONS(3009), 1, anon_sym_AMP, - STATE(675), 1, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + STATE(673), 1, sym_argument_list, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2378), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [44622] = 21, + ACTIONS(3171), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [43598] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_SEMI, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44694] = 20, + ACTIONS(3173), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [43668] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3175), 1, + anon_sym_COLON, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3189), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [44764] = 20, + [43740] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3191), 1, - anon_sym_RPAREN, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2987), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44833] = 20, + [43810] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_RBRACK, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3177), 1, + anon_sym_COLON, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44902] = 20, + [43882] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3193), 1, + ACTIONS(3045), 1, anon_sym_COMMA, - STATE(675), 1, + ACTIONS(3179), 1, + anon_sym_SEMI, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44971] = 20, + [43954] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3195), 1, - anon_sym_COLON, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3181), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45040] = 20, + [44026] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 1, - anon_sym_RBRACK, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3183), 1, + anon_sym_COLON, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45109] = 20, + [44098] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym_RBRACK, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3185), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45178] = 20, + [44170] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_RBRACK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45247] = 20, + ACTIONS(3187), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44240] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, - anon_sym_RBRACK, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3045), 1, + anon_sym_COMMA, + ACTIONS(3189), 1, + anon_sym_COLON, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45316] = 20, + [44312] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, - anon_sym_RBRACK, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3191), 1, + anon_sym_COLON, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45385] = 20, + [44381] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2109), 1, + anon_sym_RBRACK, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - ACTIONS(3199), 1, - anon_sym_RPAREN, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45454] = 20, + [44450] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 1, - anon_sym_RBRACK, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3193), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45523] = 20, + [44519] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2111), 1, + anon_sym_RBRACK, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - ACTIONS(3201), 1, - anon_sym_COLON, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45592] = 20, + [44588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(751), 1, + sym_attribute_specifier, + ACTIONS(2839), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2362), 1, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2837), 19, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [44627] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_RBRACK, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - ACTIONS(3203), 1, - anon_sym_COLON, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45661] = 20, + [44696] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_COLON, - STATE(675), 1, + ACTIONS(3195), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45730] = 20, + [44765] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2107), 1, - anon_sym_RBRACK, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2870), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3121), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3107), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3197), 1, + anon_sym_RBRACK, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3117), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45799] = 20, + [44834] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3207), 1, - anon_sym_COLON, - STATE(675), 1, + ACTIONS(3199), 1, + anon_sym_COMMA, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45868] = 20, + [44903] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1897), 1, + anon_sym_LPAREN2, + ACTIONS(1899), 1, + anon_sym_STAR, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + STATE(1405), 1, + sym__abstract_declarator, + STATE(1437), 1, + sym_parameter_list, + ACTIONS(2945), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1077), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3201), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2939), 9, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [44958] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2099), 1, anon_sym_RBRACK, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2870), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3121), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3107), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3117), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45937] = 20, + [45027] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym_RBRACK, - ACTIONS(2362), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1897), 1, + anon_sym_LPAREN2, + ACTIONS(1899), 1, + anon_sym_STAR, + ACTIONS(2802), 1, anon_sym_LBRACK, - ACTIONS(2837), 1, + STATE(709), 1, + sym_alignas_qualifier, + STATE(1403), 1, + sym__abstract_declarator, + STATE(1437), 1, + sym_parameter_list, + ACTIONS(2945), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(982), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2927), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2939), 9, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [45082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(737), 1, + sym_attribute_specifier, + ACTIONS(2855), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3097), 1, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2853), 19, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [45121] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3023), 1, anon_sym_PIPE, - ACTIONS(3105), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3025), 1, anon_sym_QMARK, - STATE(675), 1, + ACTIONS(3203), 1, + anon_sym_RPAREN, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3003), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46006] = 20, + [45190] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(2095), 1, anon_sym_RBRACK, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2870), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3121), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3107), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3117), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46075] = 20, + [45259] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(1897), 1, + anon_sym_LPAREN2, + ACTIONS(1899), 1, + anon_sym_STAR, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(709), 1, + sym_alignas_qualifier, + STATE(1401), 1, + sym__abstract_declarator, + STATE(1437), 1, + sym_parameter_list, + ACTIONS(2945), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(982), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2796), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(2939), 9, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [45314] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + anon_sym_RBRACK, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2837), 1, + ACTIONS(2870), 1, anon_sym_LPAREN2, - ACTIONS(3097), 1, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(3099), 1, + ACTIONS(3121), 1, anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(3103), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3105), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3107), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3117), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - ACTIONS(3209), 1, - anon_sym_RBRACK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3093), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3095), 2, + ACTIONS(3117), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3109), 2, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3111), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3113), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3115), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46144] = 20, + [45383] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3005), 1, anon_sym_SLASH, - ACTIONS(2997), 1, - anon_sym_AMP_AMP, - ACTIONS(2999), 1, - anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3007), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3009), 1, anon_sym_AMP, - ACTIONS(3013), 1, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_RPAREN, - STATE(675), 1, + ACTIONS(3205), 1, + anon_sym_COLON, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3013), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46213] = 20, + [45452] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, + ACTIONS(2101), 1, + anon_sym_RBRACK, + ACTIONS(2358), 1, anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - ACTIONS(3213), 1, - anon_sym_RPAREN, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46282] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1907), 1, - anon_sym_LPAREN2, - ACTIONS(1909), 1, - anon_sym_STAR, - ACTIONS(2791), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - STATE(1423), 1, - sym__abstract_declarator, - STATE(1447), 1, - sym_parameter_list, - ACTIONS(2935), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(981), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2785), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2929), 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, - [46336] = 13, + [45521] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1907), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - ACTIONS(1909), 1, - anon_sym_STAR, - ACTIONS(2791), 1, + ACTIONS(2358), 1, anon_sym_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - STATE(1403), 1, - sym__abstract_declarator, - STATE(1447), 1, - sym_parameter_list, - ACTIONS(2935), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1075), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3215), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3005), 1, + anon_sym_SLASH, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3207), 1, anon_sym_COLON, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2929), 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, - [46390] = 13, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45590] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1907), 1, + ACTIONS(1897), 1, anon_sym_LPAREN2, - ACTIONS(1909), 1, + ACTIONS(1899), 1, anon_sym_STAR, - ACTIONS(2791), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1435), 1, + STATE(1402), 1, sym__abstract_declarator, - STATE(1447), 1, + STATE(1437), 1, sym_parameter_list, - ACTIONS(2935), 2, + ACTIONS(2945), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(1072), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3217), 3, + ACTIONS(3209), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1445), 4, + STATE(1455), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2929), 8, + ACTIONS(2939), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -97447,39 +97736,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46444] = 13, + anon_sym__Nonnull, + [45645] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1907), 1, + ACTIONS(1897), 1, anon_sym_LPAREN2, - ACTIONS(1909), 1, + ACTIONS(1899), 1, anon_sym_STAR, - ACTIONS(2791), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1404), 1, + STATE(1423), 1, sym__abstract_declarator, - STATE(1447), 1, + STATE(1437), 1, sym_parameter_list, - ACTIONS(2935), 2, + ACTIONS(2945), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2937), 3, + ACTIONS(3211), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1445), 4, + STATE(1455), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2929), 8, + ACTIONS(2939), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -97488,225 +97778,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46498] = 5, + anon_sym__Nonnull, + [45700] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(744), 1, - sym_attribute_specifier, - ACTIONS(2883), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(2093), 1, + anon_sym_RBRACK, + ACTIONS(2358), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2881), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [46536] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, + ACTIONS(2870), 1, anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2993), 1, + ACTIONS(3119), 1, anon_sym_SLASH, - ACTIONS(2997), 1, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, anon_sym_AMP_AMP, - ACTIONS(2999), 1, + ACTIONS(3125), 1, anon_sym_PIPE, - ACTIONS(3001), 1, + ACTIONS(3127), 1, anon_sym_CARET, - ACTIONS(3003), 1, + ACTIONS(3129), 1, anon_sym_AMP, - ACTIONS(3013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3015), 1, + ACTIONS(3139), 1, anon_sym_QMARK, - STATE(675), 1, + STATE(673), 1, sym_argument_list, - ACTIONS(2364), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2374), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2991), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2995), 2, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3005), 2, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3007), 2, + ACTIONS(3133), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3009), 2, + ACTIONS(3135), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3011), 2, + ACTIONS(3137), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46602] = 4, + [45769] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, - anon_sym_SEMI, - ACTIONS(1724), 7, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1718), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(3019), 1, anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3213), 1, + anon_sym_COLON, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3017), 2, anon_sym_LT_LT, anon_sym_GT_GT, + [45838] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2105), 1, + anon_sym_RBRACK, + ACTIONS(2358), 1, anon_sym_LBRACK, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(3119), 1, + anon_sym_SLASH, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, + anon_sym_AMP_AMP, + ACTIONS(3125), 1, + anon_sym_PIPE, + ACTIONS(3127), 1, + anon_sym_CARET, + ACTIONS(3129), 1, + anon_sym_AMP, + ACTIONS(3139), 1, anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, anon_sym_DOT, anon_sym_DASH_GT, - [46638] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(734), 1, - sym_attribute_specifier, - ACTIONS(2865), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(3115), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3117), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2863), 18, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [46676] = 13, + anon_sym_PERCENT, + ACTIONS(3131), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3133), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3135), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3137), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45907] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(1907), 1, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2870), 1, anon_sym_LPAREN2, - ACTIONS(1909), 1, + ACTIONS(3119), 1, + anon_sym_SLASH, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, + anon_sym_AMP_AMP, + ACTIONS(3125), 1, + anon_sym_PIPE, + ACTIONS(3127), 1, + anon_sym_CARET, + ACTIONS(3129), 1, + anon_sym_AMP, + ACTIONS(3139), 1, + anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3117), 2, anon_sym_STAR, - ACTIONS(2791), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_alignas_qualifier, - STATE(1401), 1, - sym__abstract_declarator, - STATE(1447), 1, - sym_parameter_list, - ACTIONS(2935), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(981), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3219), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(2929), 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, - [46730] = 13, + anon_sym_PERCENT, + ACTIONS(3131), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3133), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3135), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3137), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45976] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(1907), 1, + ACTIONS(1897), 1, anon_sym_LPAREN2, - ACTIONS(1909), 1, + ACTIONS(1899), 1, anon_sym_STAR, - ACTIONS(2791), 1, + ACTIONS(2802), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1436), 1, + STATE(1416), 1, sym__abstract_declarator, - STATE(1447), 1, + STATE(1437), 1, sym_parameter_list, - ACTIONS(2935), 2, + ACTIONS(2945), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1081), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3221), 3, + ACTIONS(3215), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1445), 4, + STATE(1455), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(2929), 8, + ACTIONS(2939), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -97715,21 +98016,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46784] = 5, + anon_sym__Nonnull, + [46031] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(753), 1, + STATE(734), 1, sym_attribute_specifier, - ACTIONS(2872), 6, + ACTIONS(2848), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2870), 18, + ACTIONS(2846), 19, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -97744,40 +98046,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [46822] = 12, + [46070] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(2870), 1, + anon_sym_LPAREN2, + ACTIONS(3119), 1, + anon_sym_SLASH, + ACTIONS(3121), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3123), 1, + anon_sym_AMP_AMP, + ACTIONS(3125), 1, + anon_sym_PIPE, + ACTIONS(3127), 1, + anon_sym_CARET, + ACTIONS(3129), 1, + anon_sym_AMP, + ACTIONS(3139), 1, + anon_sym_QMARK, + ACTIONS(3217), 1, + anon_sym_RBRACK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3115), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3117), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3131), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3133), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3135), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3137), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46139] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_SLASH, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3219), 1, + anon_sym_COLON, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46208] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_SLASH, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + ACTIONS(3221), 1, + anon_sym_RPAREN, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46277] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1262), 1, + STATE(1265), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97787,27 +98237,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46873] = 12, + anon_sym__Nonnull, + [46329] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2959), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1307), 1, + STATE(1291), 1, sym__field_declarator, - STATE(1767), 1, + STATE(1895), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, STATE(1363), 5, @@ -97816,7 +98267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97826,36 +98277,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46924] = 12, + anon_sym__Nonnull, + [46381] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2959), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1267), 1, - sym__declarator, - STATE(1926), 1, + STATE(1282), 1, + sym__field_declarator, + STATE(1895), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + STATE(1363), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97865,36 +98317,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46975] = 12, + anon_sym__Nonnull, + [46433] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1294), 1, - sym__field_declarator, - STATE(1767), 1, + STATE(1273), 1, + sym__declarator, + STATE(1813), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1363), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97904,36 +98357,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47026] = 12, + anon_sym__Nonnull, + [46485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2921), 1, + anon_sym_SEMI, + ACTIONS(1724), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1718), 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, + [46521] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(2358), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_SLASH, + ACTIONS(3007), 1, + anon_sym_CARET, + ACTIONS(3009), 1, + anon_sym_AMP, + ACTIONS(3019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3021), 1, + anon_sym_AMP_AMP, + ACTIONS(3023), 1, + anon_sym_PIPE, + ACTIONS(3025), 1, + anon_sym_QMARK, + STATE(673), 1, + sym_argument_list, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2362), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3001), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3003), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3011), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3013), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3015), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3017), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46587] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1288), 1, - sym__field_declarator, - STATE(1767), 1, + STATE(1260), 1, + sym__declarator, + STATE(1813), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1363), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97943,36 +98476,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47077] = 12, + anon_sym__Nonnull, + [46639] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2959), 1, anon_sym_STAR, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, - STATE(1263), 1, - sym__declarator, - STATE(1926), 1, + STATE(1297), 1, + sym__field_declarator, + STATE(1895), 1, sym_ms_based_modifier, ACTIONS(49), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, + STATE(1363), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97982,27 +98516,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47128] = 6, + anon_sym__Nonnull, + [46691] = 7, ACTIONS(3), 1, sym_comment, - STATE(728), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2480), 2, + ACTIONS(2635), 1, sym_primitive_type, + ACTIONS(3223), 1, sym_identifier, - ACTIONS(2484), 4, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3225), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2696), 6, + ACTIONS(2629), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2693), 11, + ACTIONS(2631), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98012,30 +98548,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - [47166] = 7, + [46732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 1, - sym_primitive_type, - ACTIONS(3223), 1, - sym_identifier, - STATE(1090), 1, + STATE(722), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3225), 4, + ACTIONS(2474), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(2478), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2641), 6, + ACTIONS(2518), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2643), 11, + ACTIONS(2515), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98045,49 +98581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - [47206] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - ACTIONS(2896), 1, - sym_primitive_type, - STATE(1242), 1, - sym_ms_call_modifier, - STATE(1392), 1, - sym__type_declarator, - STATE(1914), 1, - sym_ms_based_modifier, - ACTIONS(2894), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1390), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [47255] = 7, + [46771] = 7, ACTIONS(3), 1, sym_comment, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, @@ -98095,7 +98595,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3229), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1094), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3227), 7, @@ -98106,7 +98606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98116,10 +98616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47294] = 7, + anon_sym__Nonnull, + [46811] = 7, ACTIONS(3), 1, sym_comment, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, @@ -98127,7 +98628,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3233), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(981), 2, + STATE(1092), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3231), 7, @@ -98138,7 +98639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98148,10 +98649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47333] = 7, + anon_sym__Nonnull, + [46851] = 7, ACTIONS(3), 1, sym_comment, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, @@ -98159,7 +98661,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3237), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(981), 2, + STATE(982), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3235), 7, @@ -98170,7 +98672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98180,10 +98682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47372] = 7, + anon_sym__Nonnull, + [46891] = 7, ACTIONS(3), 1, sym_comment, - STATE(707), 1, + STATE(709), 1, sym_alignas_qualifier, ACTIONS(49), 2, anon_sym_alignas, @@ -98191,7 +98694,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3241), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1095), 2, + STATE(1094), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(3239), 7, @@ -98202,7 +98705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(47), 9, + ACTIONS(47), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98212,38 +98715,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47411] = 15, + anon_sym__Nonnull, + [46931] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2860), 1, + sym_identifier, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(3243), 1, - sym_identifier, - STATE(641), 1, - sym__old_style_function_declarator, - STATE(1272), 1, + ACTIONS(2868), 1, + sym_primitive_type, + STATE(1242), 1, sym_ms_call_modifier, - STATE(1310), 1, - sym_function_declarator, - STATE(1321), 1, - sym__declarator, - STATE(1409), 1, - sym__declaration_declarator, - STATE(1471), 1, - sym__function_declaration_declarator, - STATE(1549), 1, - sym_init_declarator, - STATE(1926), 1, + STATE(1378), 1, + sym__type_declarator, + STATE(1883), 1, sym_ms_based_modifier, - STATE(1331), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, + ACTIONS(2866), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1376), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(39), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -98251,20 +98753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47465] = 5, + [46980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_LPAREN2, - STATE(984), 1, + STATE(990), 1, sym_preproc_argument_list, - ACTIONS(3249), 5, + ACTIONS(3247), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3245), 15, + ACTIONS(3243), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -98280,34 +98782,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47499] = 15, + [47014] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(647), 1, + STATE(631), 1, sym__old_style_function_declarator, - STATE(1276), 1, + STATE(1277), 1, sym_ms_call_modifier, - STATE(1310), 1, - sym_function_declarator, - STATE(1314), 1, + STATE(1324), 1, sym__declarator, - STATE(1422), 1, + STATE(1327), 1, + sym_function_declarator, + STATE(1404), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1538), 1, + STATE(1522), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -98319,73 +98821,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47553] = 15, + [47068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2959), 1, + STATE(722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2518), 2, anon_sym_LPAREN2, - ACTIONS(2961), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3251), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2515), 15, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(646), 1, - sym__old_style_function_declarator, - STATE(1277), 1, - sym_ms_call_modifier, - STATE(1310), 1, - sym_function_declarator, - STATE(1319), 1, - sym__declarator, - STATE(1416), 1, - sym__declaration_declarator, - STATE(1471), 1, - sym__function_declaration_declarator, - STATE(1597), 1, - sym_init_declarator, - STATE(1926), 1, - sym_ms_based_modifier, - STATE(1331), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [47607] = 15, + [47102] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(640), 1, + STATE(636), 1, sym__old_style_function_declarator, - STATE(1269), 1, + STATE(1258), 1, sym_ms_call_modifier, - STATE(1310), 1, - sym_function_declarator, - STATE(1328), 1, + STATE(1321), 1, sym__declarator, - STATE(1407), 1, + STATE(1327), 1, + sym_function_declarator, + STATE(1435), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1636), 1, + STATE(1627), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -98397,24 +98889,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47661] = 7, + [47156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 1, - sym_identifier, - ACTIONS(3257), 1, + STATE(722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2612), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3255), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2610), 15, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - STATE(1111), 1, + sym_identifier, + [47190] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(722), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2641), 2, + ACTIONS(2616), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3254), 4, + ACTIONS(3258), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2643), 12, + ACTIONS(2614), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -98425,73 +98942,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - [47698] = 16, + sym_primitive_type, + sym_identifier, + [47224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, - anon_sym_RPAREN, - ACTIONS(3268), 1, - anon_sym_SLASH, - ACTIONS(3270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3272), 1, - anon_sym_AMP_AMP, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_CARET, - ACTIONS(3278), 1, - anon_sym_AMP, - STATE(1523), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3264), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3266), 2, + STATE(722), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2604), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3280), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3282), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3284), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47753] = 14, + ACTIONS(3261), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2602), 15, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [47258] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1277), 1, + STATE(627), 1, + sym__old_style_function_declarator, + STATE(1276), 1, sym_ms_call_modifier, - STATE(1310), 1, - sym_function_declarator, - STATE(1337), 1, + STATE(1319), 1, sym__declarator, - STATE(1416), 1, + STATE(1327), 1, + sym_function_declarator, + STATE(1430), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1597), 1, + STATE(1539), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -98503,71 +99015,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47804] = 16, + [47312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, - anon_sym_COMMA, - ACTIONS(3268), 1, - anon_sym_SLASH, + ACTIONS(3264), 1, + sym_identifier, ACTIONS(3270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3272), 1, - anon_sym_AMP_AMP, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_CARET, - ACTIONS(3278), 1, - anon_sym_AMP, - ACTIONS(3288), 1, - anon_sym_RPAREN, - STATE(1556), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3264), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3266), 2, + sym_primitive_type, + STATE(1099), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2629), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3280), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3282), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3284), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47859] = 14, + ACTIONS(3267), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2631), 13, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + [47350] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1275), 1, + STATE(633), 1, + sym__old_style_function_declarator, + STATE(1272), 1, sym_ms_call_modifier, - STATE(1310), 1, - sym_function_declarator, - STATE(1383), 1, + STATE(1322), 1, sym__declarator, + STATE(1327), 1, + sym_function_declarator, STATE(1414), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1589), 1, + STATE(1622), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -98579,20 +99085,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [47910] = 5, + [47404] = 6, ACTIONS(3), 1, sym_comment, - STATE(728), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2580), 2, - anon_sym_LPAREN2, + ACTIONS(1729), 1, anon_sym_STAR, - ACTIONS(3290), 4, + ACTIONS(2579), 1, + anon_sym_LPAREN2, + STATE(1103), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3273), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2578), 14, + ACTIONS(1716), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -98603,24 +99110,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [47943] = 5, + [47440] = 5, ACTIONS(3), 1, sym_comment, - STATE(728), 1, + STATE(722), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2509), 2, + ACTIONS(2531), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3293), 4, + ACTIONS(3276), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2507), 14, + ACTIONS(2529), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -98631,94 +99139,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [47976] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2959), 1, - anon_sym_LPAREN2, - ACTIONS(2961), 1, - anon_sym_STAR, - ACTIONS(3243), 1, - sym_identifier, - STATE(1273), 1, - sym_ms_call_modifier, - STATE(1310), 1, - sym_function_declarator, - STATE(1383), 1, - sym__declarator, - STATE(1422), 1, - sym__declaration_declarator, - STATE(1471), 1, - sym__function_declaration_declarator, - STATE(1538), 1, - sym_init_declarator, - STATE(1926), 1, - sym_ms_based_modifier, - STATE(1331), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48027] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 1, - sym_identifier, - ACTIONS(3298), 1, - anon_sym_RPAREN, - ACTIONS(3300), 1, - anon_sym_LPAREN2, - ACTIONS(3302), 1, - anon_sym_defined, - ACTIONS(3308), 1, - sym_number_literal, - ACTIONS(3304), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3306), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3310), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1105), 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, - [48070] = 5, + [47474] = 5, ACTIONS(3), 1, sym_comment, - STATE(728), 1, + STATE(1102), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2696), 2, + ACTIONS(2511), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3312), 4, + ACTIONS(3279), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2693), 14, + ACTIONS(2509), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -98729,61 +99168,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [48103] = 14, + [47508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2959), 1, + STATE(1108), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2620), 2, anon_sym_LPAREN2, - ACTIONS(2961), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3282), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2618), 15, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(1259), 1, - sym_ms_call_modifier, - STATE(1310), 1, - sym_function_declarator, - STATE(1383), 1, - sym__declarator, - STATE(1416), 1, - sym__declaration_declarator, - STATE(1471), 1, - sym__function_declaration_declarator, - STATE(1597), 1, - sym_init_declarator, - STATE(1926), 1, - sym_ms_based_modifier, - STATE(1331), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [48154] = 5, + [47542] = 5, ACTIONS(3), 1, sym_comment, - STATE(728), 1, + STATE(1101), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2519), 2, + ACTIONS(2647), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3316), 4, + ACTIONS(3285), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2517), 14, + ACTIONS(2645), 15, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -98794,103 +99226,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, sym_identifier, - [48187] = 16, + [47576] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3288), 1, anon_sym_COMMA, - ACTIONS(3268), 1, + ACTIONS(3290), 1, + anon_sym_RPAREN, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3270), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3272), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3274), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3304), 1, anon_sym_CARET, - ACTIONS(3278), 1, + ACTIONS(3306), 1, anon_sym_AMP, - ACTIONS(3319), 1, - anon_sym_RPAREN, - STATE(1623), 1, + STATE(1591), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3264), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3266), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3280), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3282), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3284), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3286), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48242] = 5, - ACTIONS(3245), 1, - anon_sym_LF, - ACTIONS(3321), 1, - anon_sym_LPAREN2, - ACTIONS(3323), 1, + [47631] = 14, + ACTIONS(3), 1, sym_comment, - STATE(1205), 1, - sym_preproc_argument_list, - ACTIONS(3249), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + anon_sym_LPAREN2, + ACTIONS(2953), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48275] = 14, + ACTIONS(3249), 1, + sym_identifier, + STATE(1270), 1, + sym_ms_call_modifier, + STATE(1327), 1, + sym_function_declarator, + STATE(1393), 1, + sym__declarator, + STATE(1428), 1, + sym__declaration_declarator, + STATE(1485), 1, + sym__function_declaration_declarator, + STATE(1528), 1, + sym_init_declarator, + STATE(1813), 1, + sym_ms_based_modifier, + STATE(1343), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47682] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1276), 1, + STATE(1258), 1, sym_ms_call_modifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1346), 1, + STATE(1344), 1, sym__declarator, - STATE(1422), 1, + STATE(1435), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1538), 1, + STATE(1627), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -98902,60 +99344,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [48326] = 5, + [47733] = 14, ACTIONS(3), 1, sym_comment, - STATE(1128), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2667), 2, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, anon_sym_LPAREN2, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3325), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2665), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3249), 1, sym_identifier, - [48359] = 14, + STATE(1276), 1, + sym_ms_call_modifier, + STATE(1327), 1, + sym_function_declarator, + STATE(1331), 1, + sym__declarator, + STATE(1430), 1, + sym__declaration_declarator, + STATE(1485), 1, + sym__function_declaration_declarator, + STATE(1539), 1, + sym_init_declarator, + STATE(1813), 1, + sym_ms_based_modifier, + STATE(1343), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [47784] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, STATE(1274), 1, sym_ms_call_modifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1383), 1, + STATE(1393), 1, sym__declarator, - STATE(1409), 1, + STATE(1414), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1549), 1, + STATE(1622), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -98967,32 +99418,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [48410] = 10, + [47835] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3318), 1, + anon_sym_RPAREN, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3328), 1, - anon_sym_RPAREN, - ACTIONS(3330), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1103), 7, + STATE(1119), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99000,32 +99451,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48453] = 14, + [47878] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1272), 1, + STATE(1278), 1, sym_ms_call_modifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1340), 1, + STATE(1393), 1, sym__declarator, - STATE(1409), 1, + STATE(1430), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1549), 1, + STATE(1539), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -99037,32 +99488,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [48504] = 14, + [47929] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3288), 1, + anon_sym_COMMA, + ACTIONS(3296), 1, + anon_sym_SLASH, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + 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(3332), 1, + anon_sym_RPAREN, + STATE(1612), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3294), 2, + anon_sym_STAR, + anon_sym_PERCENT, + 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, + [47984] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1268), 1, + STATE(1277), 1, sym_ms_call_modifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1383), 1, + STATE(1345), 1, sym__declarator, - STATE(1451), 1, + STATE(1404), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1698), 1, + STATE(1522), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -99074,32 +99564,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [48555] = 14, + [48035] = 5, + ACTIONS(3243), 1, + anon_sym_LF, + ACTIONS(3334), 1, + anon_sym_LPAREN2, + ACTIONS(3336), 1, + sym_comment, + STATE(1209), 1, + sym_preproc_argument_list, + ACTIONS(3247), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48068] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1269), 1, + STATE(1261), 1, sym_ms_call_modifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1344), 1, + STATE(1393), 1, sym__declarator, - STATE(1407), 1, + STATE(1435), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1636), 1, + STATE(1627), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -99111,89 +99629,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [48606] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1108), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2523), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3332), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2521), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [48639] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1729), 1, - anon_sym_STAR, - ACTIONS(2527), 1, - anon_sym_LPAREN2, - STATE(1107), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3335), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1716), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [48674] = 10, + [48119] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3338), 1, anon_sym_RPAREN, ACTIONS(3340), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1114), 7, + STATE(1112), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99201,32 +99662,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48717] = 14, + [48162] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1266), 1, + STATE(1272), 1, sym_ms_call_modifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1383), 1, + STATE(1338), 1, sym__declarator, - STATE(1408), 1, + STATE(1414), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1572), 1, + STATE(1622), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -99238,88 +99699,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [48768] = 5, + [48213] = 14, ACTIONS(3), 1, sym_comment, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2673), 2, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, anon_sym_LPAREN2, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3342), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2671), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3249), 1, sym_identifier, - [48801] = 5, + STATE(1268), 1, + sym_ms_call_modifier, + STATE(1327), 1, + sym_function_declarator, + STATE(1393), 1, + sym__declarator, + STATE(1404), 1, + sym__declaration_declarator, + STATE(1485), 1, + sym__function_declaration_declarator, + STATE(1522), 1, + sym_init_declarator, + STATE(1813), 1, + sym_ms_based_modifier, + STATE(1343), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48264] = 14, ACTIONS(3), 1, sym_comment, - STATE(728), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2515), 2, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, anon_sym_LPAREN2, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3345), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2513), 14, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3249), 1, sym_identifier, - [48834] = 14, + STATE(1259), 1, + sym_ms_call_modifier, + STATE(1327), 1, + sym_function_declarator, + STATE(1393), 1, + sym__declarator, + STATE(1413), 1, + sym__declaration_declarator, + STATE(1485), 1, + sym__function_declaration_declarator, + STATE(1604), 1, + sym_init_declarator, + STATE(1813), 1, + sym_ms_based_modifier, + STATE(1343), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [48315] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1261), 1, + STATE(1269), 1, sym_ms_call_modifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1383), 1, + STATE(1393), 1, sym__declarator, - STATE(1407), 1, + STATE(1450), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1636), 1, + STATE(1665), 1, sym_init_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -99331,30 +99810,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [48885] = 9, + [48366] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3322), 1, anon_sym_defined, - ACTIONS(3348), 1, + ACTIONS(3342), 1, + anon_sym_RPAREN, + ACTIONS(3344), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1167), 7, + STATE(1129), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99362,30 +99843,69 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48925] = 9, + [48409] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(3288), 1, + anon_sym_COMMA, ACTIONS(3296), 1, - sym_identifier, + anon_sym_SLASH, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, ACTIONS(3300), 1, - anon_sym_LPAREN2, + anon_sym_AMP_AMP, ACTIONS(3302), 1, - anon_sym_defined, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + ACTIONS(3346), 1, + anon_sym_RPAREN, + STATE(1550), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3294), 2, + anon_sym_STAR, + anon_sym_PERCENT, + 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, + [48464] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + sym_identifier, ACTIONS(3350), 1, + anon_sym_LPAREN2, + ACTIONS(3352), 1, + anon_sym_defined, + ACTIONS(3358), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1183), 7, + STATE(1196), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99393,30 +99913,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48965] = 9, + [48504] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, ACTIONS(3362), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1192), 7, + STATE(1220), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99424,30 +99944,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49005] = 9, + [48544] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3320), 1, + anon_sym_LPAREN2, + ACTIONS(3322), 1, + anon_sym_defined, + ACTIONS(3364), 1, + sym_number_literal, + ACTIONS(3324), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3330), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1155), 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, + [48584] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3366), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1206), 7, + STATE(1156), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99455,30 +100006,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49045] = 9, + [48624] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3368), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1187), 7, + STATE(1157), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99486,65 +100037,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49085] = 13, + [48664] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, - anon_sym_LPAREN2, - ACTIONS(1781), 1, - anon_sym_STAR, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(2791), 1, - anon_sym_LBRACK, - STATE(1359), 1, - sym__declarator, - STATE(1446), 1, - sym__abstract_declarator, - STATE(1447), 1, - sym_parameter_list, - STATE(1926), 1, - sym_ms_based_modifier, - ACTIONS(3370), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [49133] = 9, + ACTIONS(3320), 1, + anon_sym_LPAREN2, + ACTIONS(3322), 1, + anon_sym_defined, + ACTIONS(3370), 1, + sym_number_literal, + ACTIONS(3324), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3330), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1160), 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, + [48704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, ACTIONS(3372), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1209), 7, + STATE(1213), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99552,30 +100099,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49173] = 9, + [48744] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3374), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1190), 7, + STATE(1165), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99583,30 +100130,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49213] = 9, + [48784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3376), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1202), 7, + STATE(1166), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99614,30 +100161,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49253] = 9, + [48824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3378), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1220), 7, + STATE(1167), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99645,30 +100192,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49293] = 9, + [48864] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3380), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1218), 7, + STATE(1169), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99676,30 +100223,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49333] = 9, + [48904] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3382), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1213), 7, + STATE(1170), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99707,30 +100254,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49373] = 9, + [48944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3384), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1210), 7, + STATE(1190), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99738,30 +100285,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49413] = 9, + [48984] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3386), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3324), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3330), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1223), 7, + STATE(1162), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99769,30 +100316,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49453] = 9, + [49024] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, ACTIONS(3388), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1191), 7, + STATE(1222), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99800,30 +100347,184 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49493] = 9, + [49064] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3320), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3322), 1, anon_sym_defined, ACTIONS(3390), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3324), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3330), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1171), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [49104] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3320), 1, + anon_sym_LPAREN2, + ACTIONS(3322), 1, + anon_sym_defined, + ACTIONS(3392), 1, + sym_number_literal, + ACTIONS(3324), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3330), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1211), 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, + [49144] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3320), 1, + anon_sym_LPAREN2, + ACTIONS(3322), 1, + anon_sym_defined, + ACTIONS(3394), 1, + sym_number_literal, + ACTIONS(3324), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3330), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1176), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [49184] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + sym_identifier, + ACTIONS(3350), 1, + anon_sym_LPAREN2, + ACTIONS(3352), 1, + anon_sym_defined, + ACTIONS(3396), 1, + sym_number_literal, + ACTIONS(3354), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3356), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3360), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1225), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [49224] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 1, + anon_sym_const, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(3398), 1, + anon_sym___attribute__, + ACTIONS(3400), 1, + anon_sym_COLON, + STATE(749), 1, + sym_attribute_specifier, + STATE(1063), 1, + sym_enumerator_list, + ACTIONS(2761), 14, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + [49262] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + sym_identifier, + ACTIONS(3350), 1, + anon_sym_LPAREN2, + ACTIONS(3352), 1, + anon_sym_defined, + ACTIONS(3403), 1, + sym_number_literal, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1207), 7, + STATE(1205), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99831,16 +100532,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49533] = 3, + [49302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 5, + ACTIONS(2312), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3392), 15, + ACTIONS(2314), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -99856,61 +100557,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49561] = 9, + [49330] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, - anon_sym_defined, - ACTIONS(3396), 1, - sym_number_literal, - ACTIONS(3358), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3360), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3364), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1203), 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, - [49601] = 9, - ACTIONS(3), 1, - sym_comment, ACTIONS(3352), 1, - sym_identifier, - ACTIONS(3354), 1, - anon_sym_LPAREN2, - ACTIONS(3356), 1, anon_sym_defined, - ACTIONS(3398), 1, + ACTIONS(3405), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1198), 7, + STATE(1215), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99918,30 +100588,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49641] = 9, + [49370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3400), 1, + ACTIONS(3407), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1186), 7, + STATE(1218), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -99949,16 +100619,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49681] = 3, + [49410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 5, + ACTIONS(3411), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 15, + ACTIONS(3409), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -99974,22 +100644,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49709] = 3, + [49438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 5, + ACTIONS(3296), 1, anon_sym_SLASH, + ACTIONS(3294), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3415), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3406), 15, + ACTIONS(3413), 13, 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, @@ -99999,16 +100671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49737] = 3, + [49470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3412), 5, + ACTIONS(3415), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3410), 15, + ACTIONS(3413), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -100024,30 +100696,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49765] = 9, + [49498] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(3296), 1, - sym_identifier, + anon_sym_SLASH, ACTIONS(3300), 1, - anon_sym_LPAREN2, + anon_sym_AMP_AMP, ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + ACTIONS(3292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3294), 2, + anon_sym_STAR, + anon_sym_PERCENT, + 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(3413), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [49546] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + sym_identifier, + ACTIONS(3350), 1, + anon_sym_LPAREN2, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3414), 1, + ACTIONS(3417), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1156), 7, + STATE(1217), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100055,57 +100762,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49805] = 5, + [49586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, - anon_sym_SLASH, - ACTIONS(3266), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3418), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3416), 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, - [49837] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3420), 1, + ACTIONS(3419), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1160), 7, + STATE(1195), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100113,55 +100793,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49877] = 3, + [49626] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3418), 5, + ACTIONS(3296), 1, anon_sym_SLASH, + ACTIONS(3302), 1, anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3416), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + 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, - [49905] = 9, + ACTIONS(3413), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [49672] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3422), 1, + ACTIONS(3421), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1161), 7, + STATE(1214), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100169,30 +100858,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49945] = 9, + [49712] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(3296), 1, - sym_identifier, + anon_sym_SLASH, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, ACTIONS(3300), 1, - anon_sym_LPAREN2, + anon_sym_AMP_AMP, ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + ACTIONS(3292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3294), 2, + anon_sym_STAR, + anon_sym_PERCENT, + 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(3423), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49762] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + sym_identifier, + ACTIONS(3350), 1, + anon_sym_LPAREN2, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3424), 1, + ACTIONS(3425), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1162), 7, + STATE(1201), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100200,30 +100925,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49985] = 9, + [49802] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3426), 1, + ACTIONS(3427), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1151), 7, + STATE(1221), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100231,164 +100956,129 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50025] = 13, + [49842] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3272), 1, - anon_sym_AMP_AMP, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3304), 1, anon_sym_CARET, - ACTIONS(3278), 1, + ACTIONS(3306), 1, anon_sym_AMP, - ACTIONS(3264), 2, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3266), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3280), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3282), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3284), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3286), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3416), 3, + ACTIONS(3413), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [50073] = 12, + anon_sym_AMP_AMP, + [49888] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_CARET, - ACTIONS(3278), 1, + ACTIONS(3306), 1, anon_sym_AMP, - ACTIONS(3264), 2, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3266), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3280), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3282), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3284), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3286), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3416), 4, + ACTIONS(3413), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [50119] = 12, + anon_sym_CARET, + [49932] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3276), 1, - anon_sym_CARET, - ACTIONS(3278), 1, - anon_sym_AMP, - ACTIONS(3418), 1, - anon_sym_PIPE, - ACTIONS(3264), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3266), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3280), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3282), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3284), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3286), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3416), 4, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3413), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [50165] = 9, + anon_sym_CARET, + [49974] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, - anon_sym_defined, - ACTIONS(3428), 1, - sym_number_literal, - ACTIONS(3304), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3306), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3310), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1165), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [50205] = 9, - ACTIONS(3), 1, - sym_comment, ACTIONS(3352), 1, - sym_identifier, - ACTIONS(3354), 1, - anon_sym_LPAREN2, - ACTIONS(3356), 1, anon_sym_defined, - ACTIONS(3430), 1, + ACTIONS(3429), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1200), 7, + STATE(1223), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100396,95 +101086,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50245] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3268), 1, - anon_sym_SLASH, - ACTIONS(3278), 1, - anon_sym_AMP, - ACTIONS(3418), 1, - anon_sym_PIPE, - ACTIONS(3264), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3266), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3280), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3282), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3284), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3416), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [50289] = 10, + [50014] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3264), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3266), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3280), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3282), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3284), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3286), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3418), 2, + ACTIONS(3415), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3416), 5, + ACTIONS(3413), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [50331] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [50054] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3264), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3266), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3282), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3284), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3286), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3418), 2, + ACTIONS(3415), 4, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3416), 7, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3413), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -100492,26 +101144,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [50371] = 7, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [50090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3264), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3266), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3418), 4, + ACTIONS(3415), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3416), 9, + ACTIONS(3413), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -100521,30 +101172,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [50407] = 9, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50124] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3432), 1, + ACTIONS(3431), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1166), 7, + STATE(1224), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100552,30 +101205,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50447] = 9, + [50164] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3434), 1, + ACTIONS(3433), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1214), 7, + STATE(1210), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100583,61 +101236,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50487] = 9, + [50204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, - sym_identifier, - ACTIONS(3300), 1, - anon_sym_LPAREN2, - ACTIONS(3302), 1, - anon_sym_defined, - ACTIONS(3436), 1, - sym_number_literal, - ACTIONS(3304), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3437), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3435), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1168), 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, - [50527] = 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, + [50232] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3438), 1, + ACTIONS(3439), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1215), 7, + STATE(1189), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100645,25 +101292,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50567] = 6, + [50272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3443), 5, anon_sym_SLASH, - ACTIONS(3264), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3266), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3418), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3416), 11, + ACTIONS(3441), 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, @@ -100673,30 +101317,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [50601] = 9, + [50300] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3440), 1, + ACTIONS(3445), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 7, + STATE(1192), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100704,30 +101348,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50641] = 9, + [50340] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3442), 1, + ACTIONS(3447), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1199), 7, + STATE(1203), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100735,30 +101379,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50681] = 9, + [50380] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3444), 1, + ACTIONS(3449), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1193), 7, + STATE(1188), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100766,30 +101410,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50721] = 9, + [50420] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3446), 1, + ACTIONS(3451), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1196), 7, + STATE(1193), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100797,30 +101441,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50761] = 9, + [50460] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(1374), 1, + sym__declarator, + STATE(1437), 1, + sym_parameter_list, + STATE(1439), 1, + sym__abstract_declarator, + STATE(1813), 1, + sym_ms_based_modifier, + ACTIONS(3453), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [50508] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3448), 1, + ACTIONS(3455), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1201), 7, + STATE(1212), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100828,30 +101507,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50801] = 9, + [50548] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3450), 1, + ACTIONS(3457), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1219), 7, + STATE(1199), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100859,30 +101538,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50841] = 9, + [50588] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3300), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3302), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3452), 1, + ACTIONS(3459), 1, sym_number_literal, - ACTIONS(3304), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3306), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3310), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1173), 7, + STATE(1206), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100890,30 +101569,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50881] = 9, + [50628] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3352), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3354), 1, + ACTIONS(3350), 1, anon_sym_LPAREN2, - ACTIONS(3356), 1, + ACTIONS(3352), 1, anon_sym_defined, - ACTIONS(3454), 1, + ACTIONS(3461), 1, sym_number_literal, - ACTIONS(3358), 2, + ACTIONS(3354), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3360), 2, + ACTIONS(3356), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3364), 5, + ACTIONS(3360), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1224), 7, + STATE(1208), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -100921,16 +101600,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50921] = 3, + [50668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2296), 5, + ACTIONS(3465), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2298), 15, + ACTIONS(3463), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -100946,143 +101625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [50949] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3268), 1, - anon_sym_SLASH, - ACTIONS(3270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3272), 1, - anon_sym_AMP_AMP, - ACTIONS(3274), 1, - anon_sym_PIPE, - ACTIONS(3276), 1, - anon_sym_CARET, - ACTIONS(3278), 1, - anon_sym_AMP, - ACTIONS(3264), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3266), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3280), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3282), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3284), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3456), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50999] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 1, - sym_identifier, - ACTIONS(3354), 1, - anon_sym_LPAREN2, - ACTIONS(3356), 1, - anon_sym_defined, - ACTIONS(3458), 1, - sym_number_literal, - ACTIONS(3358), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3360), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3364), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1194), 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, - [51039] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3296), 1, - sym_identifier, - ACTIONS(3300), 1, - anon_sym_LPAREN2, - ACTIONS(3302), 1, - anon_sym_defined, - ACTIONS(3460), 1, - sym_number_literal, - ACTIONS(3304), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3306), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3310), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1154), 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, - [51079] = 12, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(3462), 1, + [50696] = 3, + ACTIONS(3071), 1, anon_sym_LF, - ACTIONS(3468), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, - anon_sym_AMP_AMP, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3474), 1, - anon_sym_CARET, - ACTIONS(3476), 1, - anon_sym_AMP, - ACTIONS(3464), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3466), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [51124] = 3, - ACTIONS(3323), 1, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3416), 1, - anon_sym_LF, - ACTIONS(3418), 18, + ACTIONS(3069), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101101,17 +101649,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51151] = 3, - ACTIONS(3323), 1, + [50723] = 6, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3410), 1, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3412), 18, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3471), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3415), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -101123,219 +101676,275 @@ 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, - [51178] = 3, - ACTIONS(3051), 1, - anon_sym_LF, - ACTIONS(3323), 1, + [50756] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3049), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3473), 1, + anon_sym_LF, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, + ACTIONS(3477), 1, anon_sym_AMP_AMP, + ACTIONS(3479), 1, anon_sym_PIPE, + ACTIONS(3481), 1, anon_sym_CARET, + ACTIONS(3483), 1, anon_sym_AMP, + ACTIONS(3467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3471), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3469), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51205] = 14, + [50801] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3268), 1, + ACTIONS(3296), 1, anon_sym_SLASH, - ACTIONS(3270), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3272), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3274), 1, + ACTIONS(3302), 1, anon_sym_PIPE, - ACTIONS(3276), 1, + ACTIONS(3304), 1, anon_sym_CARET, - ACTIONS(3278), 1, + ACTIONS(3306), 1, anon_sym_AMP, - ACTIONS(3484), 1, + ACTIONS(3489), 1, anon_sym_RPAREN, - ACTIONS(3264), 2, + ACTIONS(3292), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3266), 2, + ACTIONS(3294), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3280), 2, + ACTIONS(3308), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3282), 2, + ACTIONS(3310), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3284), 2, + ACTIONS(3312), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3286), 2, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51254] = 12, - ACTIONS(3323), 1, + [50850] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2951), 1, + anon_sym_LPAREN2, + ACTIONS(2953), 1, + anon_sym_STAR, + STATE(641), 1, + sym__old_style_function_declarator, + STATE(1299), 1, + sym_ms_call_modifier, + STATE(1333), 1, + sym__declarator, + STATE(1813), 1, + sym_ms_based_modifier, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [50893] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, + ACTIONS(3477), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3474), 1, + ACTIONS(3481), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3483), 1, anon_sym_AMP, - ACTIONS(3486), 1, + ACTIONS(3491), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51299] = 12, - ACTIONS(3323), 1, + [50938] = 5, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3418), 1, + ACTIONS(3467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3469), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3415), 13, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, anon_sym_PIPE, - ACTIONS(3474), 1, anon_sym_CARET, - ACTIONS(3476), 1, anon_sym_AMP, - ACTIONS(3464), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + [50969] = 3, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(3463), 1, + anon_sym_LF, + ACTIONS(3465), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 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, - [51344] = 12, - ACTIONS(3323), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50996] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, + ACTIONS(3477), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3474), 1, + ACTIONS(3481), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3483), 1, anon_sym_AMP, - ACTIONS(3488), 1, + ACTIONS(3493), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51389] = 12, - ACTIONS(3323), 1, + [51041] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, + ACTIONS(3477), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3474), 1, + ACTIONS(3481), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3483), 1, anon_sym_AMP, - ACTIONS(3490), 1, + ACTIONS(3495), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51434] = 11, + [51086] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(636), 1, + STATE(630), 1, sym__old_style_function_declarator, - STATE(1306), 1, + STATE(1304), 1, sym_ms_call_modifier, - STATE(1342), 1, + STATE(1330), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101348,45 +101957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51477] = 12, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(3468), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, - anon_sym_AMP_AMP, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3474), 1, - anon_sym_CARET, - ACTIONS(3476), 1, - anon_sym_AMP, - ACTIONS(3492), 1, - anon_sym_LF, - ACTIONS(3464), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3466), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [51522] = 3, - ACTIONS(3323), 1, + [51129] = 3, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(3409), 1, anon_sym_LF, - ACTIONS(3394), 18, + ACTIONS(3411), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101405,12 +101981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51549] = 3, - ACTIONS(3323), 1, + [51156] = 3, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3406), 1, + ACTIONS(3441), 1, anon_sym_LF, - ACTIONS(3408), 18, + ACTIONS(3443), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101429,205 +102005,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51576] = 11, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(3416), 1, + [51183] = 3, + ACTIONS(3051), 1, anon_sym_LF, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3474), 1, - anon_sym_CARET, - ACTIONS(3476), 1, - anon_sym_AMP, - ACTIONS(3418), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3464), 2, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(3049), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3466), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [51619] = 12, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(3468), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, anon_sym_PIPE, - ACTIONS(3474), 1, anon_sym_CARET, - ACTIONS(3476), 1, anon_sym_AMP, - ACTIONS(3494), 1, - anon_sym_LF, - ACTIONS(3464), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3478), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3466), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51664] = 12, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(3468), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, - anon_sym_AMP_AMP, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3474), 1, - anon_sym_CARET, - ACTIONS(3476), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_LF, - ACTIONS(3464), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3480), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [51709] = 12, - ACTIONS(3323), 1, + [51210] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, + ACTIONS(3477), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3474), 1, + ACTIONS(3481), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3483), 1, anon_sym_AMP, - ACTIONS(3498), 1, + ACTIONS(3497), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51754] = 12, - ACTIONS(3323), 1, + [51255] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2951), 1, + anon_sym_LPAREN2, + ACTIONS(2953), 1, + anon_sym_STAR, + STATE(626), 1, + sym__old_style_function_declarator, + STATE(1294), 1, + sym_ms_call_modifier, + STATE(1340), 1, + sym__declarator, + STATE(1813), 1, + sym_ms_based_modifier, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [51298] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, + ACTIONS(3477), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3474), 1, + ACTIONS(3481), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3483), 1, anon_sym_AMP, - ACTIONS(3500), 1, + ACTIONS(3499), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51799] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2793), 1, - anon_sym_const, - ACTIONS(2800), 1, - anon_sym_LBRACE, - ACTIONS(3502), 1, - anon_sym___attribute__, - ACTIONS(3504), 1, - anon_sym_COLON, - STATE(749), 1, - sym_attribute_specifier, - STATE(1080), 1, - sym_enumerator_list, - ACTIONS(2795), 13, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_alignas, - anon_sym__Alignas, - [51836] = 3, - ACTIONS(3047), 1, + [51343] = 3, + ACTIONS(2314), 1, anon_sym_LF, - ACTIONS(3323), 1, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3045), 18, + ACTIONS(2312), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101646,175 +102151,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51863] = 10, - ACTIONS(3323), 1, + [51370] = 3, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3474), 1, - anon_sym_CARET, - ACTIONS(3476), 1, - anon_sym_AMP, - ACTIONS(3464), 2, + ACTIONS(3415), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3418), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3466), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [51904] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3268), 1, - anon_sym_SLASH, - ACTIONS(3270), 1, anon_sym_PIPE_PIPE, - ACTIONS(3272), 1, anon_sym_AMP_AMP, - ACTIONS(3274), 1, anon_sym_PIPE, - ACTIONS(3276), 1, anon_sym_CARET, - ACTIONS(3278), 1, anon_sym_AMP, - ACTIONS(3507), 1, - anon_sym_RPAREN, - ACTIONS(3264), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3266), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3280), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3282), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3284), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3286), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51953] = 3, - ACTIONS(3323), 1, + [51397] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3402), 1, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3404), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3415), 1, anon_sym_PIPE_PIPE, + ACTIONS(3477), 1, anon_sym_AMP_AMP, + ACTIONS(3479), 1, anon_sym_PIPE, + ACTIONS(3481), 1, anon_sym_CARET, + ACTIONS(3483), 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, - [51980] = 9, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(3416), 1, - anon_sym_LF, - ACTIONS(3476), 1, - anon_sym_AMP, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3418), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3480), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [52019] = 8, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(3416), 1, - anon_sym_LF, - ACTIONS(3464), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3478), 2, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3418), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [52056] = 11, + [51442] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(638), 1, + STATE(650), 1, sym__old_style_function_declarator, - STATE(1298), 1, + STATE(1293), 1, sym_ms_call_modifier, - STATE(1339), 1, + STATE(1336), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101827,122 +102240,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52099] = 3, - ACTIONS(2298), 1, + [51485] = 11, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(3413), 1, + anon_sym_LF, + ACTIONS(3479), 1, + anon_sym_PIPE, + ACTIONS(3481), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_AMP, + ACTIONS(3415), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3471), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3487), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51528] = 3, + ACTIONS(3055), 1, + anon_sym_LF, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(3053), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51555] = 12, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(3475), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3477), 1, + anon_sym_AMP_AMP, + ACTIONS(3479), 1, + anon_sym_PIPE, + ACTIONS(3481), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_AMP, + ACTIONS(3501), 1, anon_sym_LF, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(2296), 18, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3471), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3487), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51600] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3296), 1, + anon_sym_SLASH, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, + 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(3503), 1, + anon_sym_RPAREN, + ACTIONS(3292), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3294), 2, + anon_sym_STAR, + anon_sym_PERCENT, + 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, - anon_sym_LT, + ACTIONS(3314), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52126] = 12, - ACTIONS(3323), 1, + [51649] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, + ACTIONS(3477), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3474), 1, + ACTIONS(3481), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3483), 1, anon_sym_AMP, - ACTIONS(3509), 1, + ACTIONS(3505), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52171] = 7, - ACTIONS(3323), 1, + [51694] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(3475), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3477), 1, + anon_sym_AMP_AMP, + ACTIONS(3479), 1, + anon_sym_PIPE, + ACTIONS(3481), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_AMP, + ACTIONS(3507), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3418), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [52206] = 6, - ACTIONS(3323), 1, + [51739] = 10, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3481), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_AMP, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3415), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3418), 11, + ACTIONS(3487), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51780] = 12, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, + ACTIONS(3477), 1, anon_sym_AMP_AMP, + ACTIONS(3479), 1, anon_sym_PIPE, + ACTIONS(3481), 1, anon_sym_CARET, + ACTIONS(3483), 1, anon_sym_AMP, + ACTIONS(3509), 1, + anon_sym_LF, + ACTIONS(3467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3471), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3469), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52239] = 3, + [51825] = 3, ACTIONS(3059), 1, anon_sym_LF, - ACTIONS(3323), 1, + ACTIONS(3336), 1, sym_comment, ACTIONS(3057), 18, anon_sym_DASH, @@ -101963,84 +102518,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52266] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2783), 1, - sym_identifier, - ACTIONS(2959), 1, - anon_sym_LPAREN2, - ACTIONS(2961), 1, - anon_sym_STAR, - STATE(644), 1, - sym__old_style_function_declarator, - STATE(1293), 1, - sym_ms_call_modifier, - STATE(1333), 1, - sym__declarator, - STATE(1926), 1, - sym_ms_based_modifier, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [52309] = 12, - ACTIONS(3323), 1, + [51852] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, + ACTIONS(3477), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3474), 1, + ACTIONS(3481), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3483), 1, anon_sym_AMP, ACTIONS(3511), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, + ACTIONS(3471), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3485), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3469), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3487), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51897] = 12, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(3475), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3477), 1, + anon_sym_AMP_AMP, + ACTIONS(3479), 1, + anon_sym_PIPE, + ACTIONS(3481), 1, + anon_sym_CARET, + ACTIONS(3483), 1, + anon_sym_AMP, + ACTIONS(3513), 1, + anon_sym_LF, + ACTIONS(3467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52354] = 5, - ACTIONS(3323), 1, + [51942] = 3, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(3435), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3437), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3466), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3418), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -102054,139 +102608,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52385] = 12, - ACTIONS(3323), 1, + [51969] = 9, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(3413), 1, + anon_sym_LF, + ACTIONS(3483), 1, + anon_sym_AMP, + ACTIONS(3467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3471), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3415), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3487), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [52008] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, + ACTIONS(3477), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3474), 1, + ACTIONS(3481), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3483), 1, anon_sym_AMP, - ACTIONS(3513), 1, + ACTIONS(3515), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52430] = 3, - ACTIONS(3063), 1, - anon_sym_LF, - ACTIONS(3323), 1, + [52053] = 8, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3061), 18, + ACTIONS(3413), 1, + anon_sym_LF, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3471), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52457] = 12, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(3468), 1, + ACTIONS(3415), 5, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, anon_sym_PIPE, - ACTIONS(3474), 1, anon_sym_CARET, - ACTIONS(3476), 1, anon_sym_AMP, - ACTIONS(3515), 1, + [52090] = 7, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52502] = 12, - ACTIONS(3323), 1, + ACTIONS(3415), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [52125] = 12, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3468), 1, + ACTIONS(3475), 1, anon_sym_PIPE_PIPE, - ACTIONS(3470), 1, + ACTIONS(3477), 1, anon_sym_AMP_AMP, - ACTIONS(3472), 1, + ACTIONS(3479), 1, anon_sym_PIPE, - ACTIONS(3474), 1, + ACTIONS(3481), 1, anon_sym_CARET, - ACTIONS(3476), 1, + ACTIONS(3483), 1, anon_sym_AMP, ACTIONS(3517), 1, anon_sym_LF, - ACTIONS(3464), 2, + ACTIONS(3467), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3478), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 2, + ACTIONS(3471), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 3, + ACTIONS(3485), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3480), 4, + ACTIONS(3487), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52547] = 4, - ACTIONS(3323), 1, + [52170] = 4, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3466), 3, + ACTIONS(3469), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3418), 15, + ACTIONS(3415), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE_PIPE, @@ -102202,26 +102786,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52576] = 11, + [52199] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(634), 1, - sym__old_style_function_declarator, - STATE(1282), 1, + STATE(1304), 1, sym_ms_call_modifier, - STATE(1336), 1, + STATE(1368), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -102234,59 +102816,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52619] = 10, + [52239] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(1779), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + anon_sym_STAR, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, - anon_sym_LPAREN2, - ACTIONS(2961), 1, - anon_sym_STAR, - STATE(1293), 1, - sym_ms_call_modifier, - STATE(1352), 1, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(1385), 1, sym__declarator, - STATE(1926), 1, + STATE(1437), 1, + sym_parameter_list, + STATE(1471), 1, + sym__abstract_declarator, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(39), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [52659] = 10, + [52283] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(1299), 1, + STATE(1293), 1, sym_ms_call_modifier, - STATE(1396), 1, - sym__field_declarator, - STATE(1767), 1, + STATE(1362), 1, + sym__declarator, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1363), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(39), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -102294,24 +102878,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52699] = 10, + [52323] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(1306), 1, + STATE(1299), 1, sym_ms_call_modifier, - STATE(1372), 1, + STATE(1354), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -102324,56 +102908,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52739] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_LPAREN2, - ACTIONS(1781), 1, - anon_sym_STAR, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2783), 1, - sym_identifier, - ACTIONS(2791), 1, - anon_sym_LBRACK, - STATE(1394), 1, - sym__declarator, - STATE(1447), 1, - sym_parameter_list, - STATE(1470), 1, - sym__abstract_declarator, - STATE(1926), 1, - sym_ms_based_modifier, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [52783] = 10, + [52363] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(1283), 1, + STATE(1281), 1, sym_ms_call_modifier, - STATE(1380), 1, + STATE(1386), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -102386,24 +102938,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52823] = 10, + [52403] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(1298), 1, + STATE(1294), 1, sym_ms_call_modifier, - STATE(1368), 1, + STATE(1371), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -102416,29 +102968,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52863] = 10, + [52443] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2959), 1, anon_sym_STAR, - STATE(1282), 1, + STATE(1300), 1, sym_ms_call_modifier, - STATE(1354), 1, - sym__declarator, - STATE(1926), 1, + STATE(1392), 1, + sym__field_declarator, + STATE(1895), 1, sym_ms_based_modifier, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1363), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(39), 6, anon_sym___cdecl, anon_sym___clrcall, @@ -102446,485 +102998,481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [52903] = 11, + [52483] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1323), 1, + STATE(1312), 1, sym__type_declarator, - STATE(1496), 1, + STATE(1514), 1, sym__type_definition_declarators, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [52944] = 11, + [52524] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1323), 1, + STATE(1312), 1, sym__type_declarator, - STATE(1479), 1, + STATE(1491), 1, sym__type_definition_declarators, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [52985] = 11, + [52565] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1323), 1, + STATE(1312), 1, sym__type_declarator, - STATE(1469), 1, + STATE(1466), 1, sym__type_definition_declarators, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53026] = 11, + [52606] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1323), 1, + STATE(1312), 1, sym__type_declarator, - STATE(1499), 1, + STATE(1512), 1, sym__type_definition_declarators, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53067] = 11, + [52647] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1323), 1, + STATE(1312), 1, sym__type_declarator, - STATE(1488), 1, + STATE(1498), 1, sym__type_definition_declarators, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53108] = 11, + [52688] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1323), 1, + STATE(1312), 1, sym__type_declarator, - STATE(1463), 1, + STATE(1518), 1, sym__type_definition_declarators, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53149] = 11, + [52729] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1323), 1, + STATE(1312), 1, sym__type_declarator, - STATE(1487), 1, + STATE(1470), 1, sym__type_definition_declarators, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53190] = 11, + [52770] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1323), 1, + STATE(1312), 1, sym__type_declarator, - STATE(1506), 1, + STATE(1473), 1, sym__type_definition_declarators, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53231] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3519), 1, - sym_identifier, - ACTIONS(3523), 1, - anon_sym_LBRACK, - STATE(1246), 1, - sym_gnu_asm_expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1251), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3521), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53265] = 10, + [52811] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1397), 1, + STATE(1335), 1, sym__type_declarator, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53303] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3519), 1, - sym_identifier, - ACTIONS(3523), 1, - anon_sym_LBRACK, - STATE(1245), 1, - sym_gnu_asm_expression, - STATE(1295), 1, - sym_attribute_specifier, - STATE(1387), 1, - aux_sym_type_definition_repeat1, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3525), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1251), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(3521), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53343] = 10, + [52849] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2888), 1, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2862), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2864), 1, anon_sym_STAR, - ACTIONS(2896), 1, + ACTIONS(2868), 1, sym_primitive_type, - STATE(1335), 1, + STATE(1398), 1, sym__type_declarator, - STATE(1914), 1, + STATE(1883), 1, sym_ms_based_modifier, - ACTIONS(2894), 4, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1390), 5, + STATE(1376), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [53381] = 10, + [52887] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(3519), 1, sym_identifier, - ACTIONS(3531), 1, + ACTIONS(3523), 1, anon_sym_LBRACK, - STATE(1295), 1, - sym_attribute_specifier, - STATE(1375), 1, - aux_sym_type_definition_repeat1, - ACTIONS(3527), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3533), 2, + STATE(1254), 1, + sym_gnu_asm_expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - STATE(1254), 2, + STATE(1252), 3, sym_preproc_call_expression, + sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3529), 4, + ACTIONS(3521), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [53418] = 6, + [52921] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(3519), 1, sym_identifier, - ACTIONS(3531), 3, + ACTIONS(3523), 1, anon_sym_LBRACK, + STATE(1251), 1, + sym_gnu_asm_expression, + STATE(1285), 1, + sym_attribute_specifier, + STATE(1394), 1, + aux_sym_type_definition_repeat1, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - STATE(1254), 3, + ACTIONS(3525), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1252), 2, sym_preproc_call_expression, - sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3529), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3521), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [53447] = 11, + [52961] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3527), 1, sym_identifier, - ACTIONS(3537), 1, + ACTIONS(3529), 1, aux_sym_preproc_if_token2, - ACTIONS(3539), 1, + ACTIONS(3531), 1, aux_sym_preproc_else_token1, - ACTIONS(3541), 1, + ACTIONS(3533), 1, aux_sym_preproc_elif_token1, - STATE(1286), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, STATE(1287), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1288), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1379), 1, + STATE(1387), 1, sym_enumerator, - ACTIONS(3543), 2, + ACTIONS(3535), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1746), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(1748), 3, + STATE(1743), 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, - [53486] = 11, + STATE(1964), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [53000] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3527), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3531), 1, aux_sym_preproc_else_token1, - ACTIONS(3541), 1, + ACTIONS(3533), 1, aux_sym_preproc_elif_token1, - ACTIONS(3545), 1, + ACTIONS(3537), 1, aux_sym_preproc_if_token2, - STATE(1296), 1, + STATE(1295), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1297), 1, + STATE(1296), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1379), 1, + STATE(1387), 1, sym_enumerator, - ACTIONS(3543), 2, + ACTIONS(3535), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1826), 3, + STATE(1857), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1827), 3, + STATE(1858), 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, - [53525] = 12, + [53039] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3519), 1, + sym_identifier, + ACTIONS(3541), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1248), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3539), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53068] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3543), 1, + sym_identifier, + ACTIONS(3548), 1, + anon_sym___attribute__, + ACTIONS(3551), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1248), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3546), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53097] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2959), 1, anon_sym_STAR, - ACTIONS(3547), 1, + ACTIONS(3553), 1, anon_sym_SEMI, - STATE(1280), 1, + STATE(1279), 1, sym__field_declarator, - STATE(1562), 1, + STATE(1624), 1, sym__field_declaration_declarator, - STATE(1766), 1, + STATE(1870), 1, sym_attribute_specifier, - STATE(1767), 1, + STATE(1895), 1, sym_ms_based_modifier, STATE(1363), 5, sym_parenthesized_field_declarator, @@ -102932,28 +103480,28 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [53566] = 12, + [53138] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2959), 1, anon_sym_STAR, - ACTIONS(3549), 1, + ACTIONS(3555), 1, anon_sym_SEMI, - STATE(1280), 1, + STATE(1279), 1, sym__field_declarator, - STATE(1612), 1, + STATE(1617), 1, sym__field_declaration_declarator, - STATE(1767), 1, + STATE(1895), 1, sym_ms_based_modifier, - STATE(1841), 1, + STATE(1936), 1, sym_attribute_specifier, STATE(1363), 5, sym_parenthesized_field_declarator, @@ -102961,22 +103509,49 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [53607] = 6, + [53179] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3519), 1, + sym_identifier, + ACTIONS(3561), 1, + anon_sym_LBRACK, + STATE(1285), 1, + sym_attribute_specifier, + STATE(1382), 1, + aux_sym_type_definition_repeat1, + ACTIONS(3557), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3563), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1247), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(3559), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53216] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(3519), 1, sym_identifier, - ACTIONS(3531), 3, + ACTIONS(3561), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1255), 3, + STATE(1248), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3529), 7, + ACTIONS(3559), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -102984,79 +103559,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [53636] = 11, + [53245] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3527), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3531), 1, aux_sym_preproc_else_token1, - ACTIONS(3541), 1, + ACTIONS(3533), 1, aux_sym_preproc_elif_token1, - ACTIONS(3551), 1, + ACTIONS(3565), 1, aux_sym_preproc_if_token2, - STATE(1302), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1303), 1, + STATE(1283), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1379), 1, - sym_enumerator, - ACTIONS(3543), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1862), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(1865), 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, - [53675] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2985), 1, - sym_identifier, - ACTIONS(2987), 1, - anon_sym_LPAREN2, - ACTIONS(2989), 1, - anon_sym_STAR, - ACTIONS(3553), 1, - anon_sym_SEMI, - STATE(1280), 1, - sym__field_declarator, - STATE(1548), 1, - sym__field_declaration_declarator, - STATE(1767), 1, - sym_ms_based_modifier, - STATE(1770), 1, - sym_attribute_specifier, - STATE(1363), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [53716] = 6, + STATE(1302), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1387), 1, + sym_enumerator, + ACTIONS(3535), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1859), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(1913), 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, + [53284] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(3519), 1, sym_identifier, - ACTIONS(3557), 3, + ACTIONS(3561), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1255), 3, + STATE(1247), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3555), 7, + ACTIONS(3559), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -103064,58 +103610,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [53745] = 6, + [53313] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, - sym_identifier, - ACTIONS(3564), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3567), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1255), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3562), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2957), 1, anon_sym_LPAREN2, + ACTIONS(2959), 1, + anon_sym_STAR, + ACTIONS(3567), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53774] = 11, + STATE(1279), 1, + sym__field_declarator, + STATE(1569), 1, + sym__field_declaration_declarator, + STATE(1895), 1, + sym_ms_based_modifier, + STATE(1968), 1, + sym_attribute_specifier, + STATE(1363), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53354] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3527), 1, sym_identifier, - ACTIONS(3539), 1, + ACTIONS(3531), 1, aux_sym_preproc_else_token1, - ACTIONS(3541), 1, + ACTIONS(3533), 1, aux_sym_preproc_elif_token1, ACTIONS(3569), 1, aux_sym_preproc_if_token2, - STATE(1285), 1, + STATE(1301), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1291), 1, + STATE(1303), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1379), 1, + STATE(1387), 1, sym_enumerator, - ACTIONS(3543), 2, + ACTIONS(3535), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1945), 3, + STATE(1903), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1960), 3, + STATE(1909), 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, - [53813] = 5, + [53393] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3573), 1, @@ -103136,121 +103688,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [53839] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3580), 1, - aux_sym_preproc_if_token1, - ACTIONS(3584), 1, - anon_sym_RBRACE, - ACTIONS(3582), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1667), 2, - sym_preproc_call, - sym_enumerator, - STATE(1735), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1260), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [53872] = 11, + [53419] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1417), 1, - sym__declaration_declarator, - STATE(1432), 1, + STATE(1349), 1, sym__declarator, - STATE(1471), 1, + STATE(1434), 1, + sym__declaration_declarator, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53909] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3580), 1, - aux_sym_preproc_if_token1, - ACTIONS(3586), 1, - anon_sym_RBRACE, - ACTIONS(3582), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1719), 2, - sym_preproc_call, - sym_enumerator, - STATE(1969), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1292), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [53942] = 11, + [53456] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1428), 1, + STATE(1420), 1, sym__declaration_declarator, - STATE(1432), 1, + STATE(1436), 1, sym__declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [53979] = 7, + [53493] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1241), 1, + STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3588), 7, + ACTIONS(3578), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -103258,21 +103762,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54008] = 7, + [53522] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2951), 1, + anon_sym_LPAREN2, + ACTIONS(2953), 1, + anon_sym_STAR, + ACTIONS(3249), 1, + sym_identifier, + STATE(1327), 1, + sym_function_declarator, + STATE(1434), 1, + sym__declaration_declarator, + STATE(1436), 1, + sym__declarator, + STATE(1485), 1, + sym__function_declaration_declarator, + STATE(1813), 1, + sym_ms_based_modifier, + STATE(1343), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [53559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(2821), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [53580] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1241), 1, + STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3594), 7, + ACTIONS(3584), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -103280,369 +103828,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54037] = 3, + [53609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 5, + ACTIONS(3245), 1, + anon_sym_LPAREN2, + STATE(990), 1, + sym_preproc_argument_list, + ACTIONS(3586), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3598), 8, + ACTIONS(3588), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [54058] = 5, + [53634] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(984), 1, - sym_preproc_argument_list, - ACTIONS(3600), 5, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(1243), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3590), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [53663] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(3592), 1, + sym_identifier, + ACTIONS(3594), 1, + aux_sym_preproc_if_token1, + ACTIONS(3598), 1, + anon_sym_RBRACE, + ACTIONS(3596), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1650), 2, + sym_preproc_call, + sym_enumerator, + STATE(1805), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1286), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [53696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3602), 6, + ACTIONS(2809), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [54083] = 11, + anon_sym_COLON, + [53717] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1411), 1, + STATE(1417), 1, sym__declaration_declarator, - STATE(1432), 1, + STATE(1436), 1, sym__declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54120] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3592), 1, - anon_sym_LBRACK, - STATE(1241), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3604), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [54149] = 11, + [53754] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1432), 1, + STATE(1436), 1, sym__declarator, - STATE(1455), 1, + STATE(1449), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54186] = 11, + [53791] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1365), 1, - sym__declarator, - STATE(1428), 1, + STATE(1429), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1436), 1, + sym__declarator, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54223] = 7, + [53828] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, - anon_sym_LPAREN2, + ACTIONS(17), 1, + sym_preproc_directive, ACTIONS(3592), 1, - anon_sym_LBRACK, - STATE(1241), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3606), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [54252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2823), 5, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - ACTIONS(2816), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [54273] = 11, + ACTIONS(3594), 1, + aux_sym_preproc_if_token1, + ACTIONS(3600), 1, + anon_sym_RBRACE, + ACTIONS(3596), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1663), 2, + sym_preproc_call, + sym_enumerator, + STATE(1736), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1266), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [53861] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1355), 1, + STATE(1357), 1, sym__declarator, - STATE(1429), 1, + STATE(1419), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54310] = 11, + [53898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, - anon_sym_STAR, - ACTIONS(3243), 1, - sym_identifier, - STATE(1310), 1, - sym_function_declarator, - STATE(1427), 1, - sym__declaration_declarator, - STATE(1432), 1, - sym__declarator, - STATE(1471), 1, - sym__function_declaration_declarator, - STATE(1926), 1, - sym_ms_based_modifier, - STATE(1331), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [54347] = 11, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(1243), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3602), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [53927] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1429), 1, + STATE(1419), 1, sym__declaration_declarator, - STATE(1432), 1, + STATE(1436), 1, sym__declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54384] = 11, + [53964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3604), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3606), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [53985] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1415), 1, - sym__declaration_declarator, - STATE(1432), 1, + STATE(1350), 1, sym__declarator, - STATE(1471), 1, + STATE(1432), 1, + sym__declaration_declarator, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54421] = 11, + [54022] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, STATE(1366), 1, sym__declarator, - STATE(1427), 1, + STATE(1417), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54458] = 11, + [54059] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - ACTIONS(3243), 1, + ACTIONS(3249), 1, sym_identifier, - STATE(1310), 1, + STATE(1327), 1, sym_function_declarator, - STATE(1351), 1, - sym__declarator, - STATE(1417), 1, + STATE(1432), 1, sym__declaration_declarator, - STATE(1471), 1, + STATE(1436), 1, + sym__declarator, + STATE(1485), 1, sym__function_declaration_declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1331), 4, + STATE(1343), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [54495] = 3, + [54096] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 5, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(2828), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3608), 1, + anon_sym_COMMA, + ACTIONS(3612), 1, + anon_sym_LBRACK, + ACTIONS(3614), 1, anon_sym_COLON, - [54516] = 5, + STATE(1370), 1, + sym_parameter_list, + STATE(1510), 1, + sym_bitfield_clause, + STATE(1515), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3610), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1328), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54132] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3610), 1, + ACTIONS(3618), 1, anon_sym_LBRACK, STATE(1257), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3608), 8, + ACTIONS(3616), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -103651,106 +104228,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54540] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3612), 1, - anon_sym_COMMA, - ACTIONS(3616), 1, - anon_sym_LBRACK, - ACTIONS(3618), 1, - anon_sym_COLON, - STATE(1364), 1, - sym_parameter_list, - STATE(1484), 1, - sym_bitfield_clause, - STATE(1490), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(3614), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1318), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54576] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 1, - aux_sym_preproc_if_token2, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3620), 1, - aux_sym_preproc_else_token1, - ACTIONS(3622), 1, - aux_sym_preproc_elif_token1, - STATE(1286), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, - sym_enumerator, - ACTIONS(3624), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1746), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [54607] = 8, + [54156] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(1353), 1, + STATE(1385), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [54636] = 8, + [54185] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2783), 1, - sym_identifier, - ACTIONS(2959), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, - anon_sym_STAR, - STATE(1394), 1, - sym__declarator, - STATE(1926), 1, - sym_ms_based_modifier, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [54665] = 6, + ACTIONS(3612), 1, + anon_sym_LBRACK, + STATE(1370), 1, + sym_parameter_list, + STATE(1328), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3620), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [54212] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(3527), 1, + sym_identifier, + ACTIONS(3622), 1, + aux_sym_preproc_if_token2, + ACTIONS(3624), 1, + aux_sym_preproc_else_token1, ACTIONS(3626), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3628), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1361), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1950), 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, + [54241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3630), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - ACTIONS(3628), 2, + ACTIONS(3632), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(1457), 2, + STATE(1496), 2, sym__string, sym_concatenated_string, ACTIONS(97), 5, @@ -103759,355 +104309,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54690] = 9, + [54266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3636), 1, + anon_sym___attribute__, + ACTIONS(3586), 2, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(3634), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3639), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3588), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [54291] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3641), 1, + sym_identifier, + ACTIONS(3644), 1, + aux_sym_preproc_if_token1, + ACTIONS(3650), 1, + sym_preproc_directive, + ACTIONS(3653), 1, + anon_sym_RBRACE, + ACTIONS(3647), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1866), 2, + sym_preproc_call, + sym_enumerator, + STATE(1286), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [54320] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(3620), 1, + ACTIONS(3655), 1, + aux_sym_preproc_if_token2, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3622), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, - ACTIONS(3630), 1, - aux_sym_preproc_if_token2, - STATE(1357), 1, + STATE(1358), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1737), 1, sym_enumerator, - ACTIONS(3624), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1929), 3, + STATE(1923), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [54721] = 9, + [54351] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3527), 1, + sym_identifier, + ACTIONS(3624), 1, + aux_sym_preproc_else_token1, + ACTIONS(3626), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3663), 1, + aux_sym_preproc_if_token2, + ACTIONS(3628), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1361), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1933), 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, + [54380] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3529), 1, + aux_sym_preproc_if_token2, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(3620), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3622), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, - ACTIONS(3632), 1, - aux_sym_preproc_if_token2, - STATE(1357), 1, + STATE(1287), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1737), 1, sym_enumerator, - ACTIONS(3624), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1872), 3, + STATE(1964), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [54752] = 8, + [54411] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3527), 1, sym_identifier, - ACTIONS(3634), 1, - aux_sym_preproc_if_token2, - ACTIONS(3636), 1, + ACTIONS(3624), 1, aux_sym_preproc_else_token1, - ACTIONS(3638), 1, + ACTIONS(3626), 1, aux_sym_preproc_elif_token1, - ACTIONS(3640), 2, + ACTIONS(3665), 1, + aux_sym_preproc_if_token2, + ACTIONS(3628), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1369), 2, + STATE(1288), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1879), 3, + STATE(1743), 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, - [54781] = 7, + [54440] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3616), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - STATE(1364), 1, + STATE(1370), 1, sym_parameter_list, - STATE(1318), 2, + STATE(1328), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3642), 5, + ACTIONS(3667), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [54808] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(3636), 1, - aux_sym_preproc_else_token1, - ACTIONS(3638), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3644), 1, - aux_sym_preproc_if_token2, - ACTIONS(3640), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1287), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1748), 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, - [54837] = 9, + [54467] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(3620), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3622), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, - ACTIONS(3646), 1, + ACTIONS(3669), 1, aux_sym_preproc_if_token2, - STATE(1285), 1, + STATE(1295), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1737), 1, sym_enumerator, - ACTIONS(3624), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1945), 3, + STATE(1857), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [54868] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(3636), 1, - aux_sym_preproc_else_token1, - ACTIONS(3638), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3648), 1, - aux_sym_preproc_if_token2, - ACTIONS(3640), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1369), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1743), 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, - [54897] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3650), 1, - sym_identifier, - ACTIONS(3653), 1, - aux_sym_preproc_if_token1, - ACTIONS(3659), 1, - sym_preproc_directive, - ACTIONS(3662), 1, - anon_sym_RBRACE, - ACTIONS(3656), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1835), 2, - sym_preproc_call, - sym_enumerator, - STATE(1292), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [54926] = 8, + [54498] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(1367), 1, + STATE(1360), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [54955] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3616), 1, - anon_sym_LBRACK, - STATE(1364), 1, - sym_parameter_list, - STATE(1318), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3664), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [54982] = 6, + [54527] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, - anon_sym___attribute__, - ACTIONS(3600), 2, - anon_sym_LBRACK, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(3666), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3671), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3602), 4, + ACTIONS(2951), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55007] = 9, + ACTIONS(2953), 1, + anon_sym_STAR, + STATE(1365), 1, + sym__declarator, + STATE(1813), 1, + sym_ms_based_modifier, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54556] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(3620), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3622), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, - ACTIONS(3673), 1, + ACTIONS(3671), 1, aux_sym_preproc_if_token2, - STATE(1357), 1, + STATE(1358), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1737), 1, sym_enumerator, - ACTIONS(3624), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1787), 3, + STATE(1786), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [55038] = 8, + [54587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3527), 1, sym_identifier, - ACTIONS(3636), 1, + ACTIONS(3624), 1, aux_sym_preproc_else_token1, - ACTIONS(3638), 1, + ACTIONS(3626), 1, aux_sym_preproc_elif_token1, - ACTIONS(3675), 1, + ACTIONS(3673), 1, aux_sym_preproc_if_token2, - ACTIONS(3640), 2, + ACTIONS(3628), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1369), 2, + STATE(1361), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1792), 3, + STATE(1853), 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, - [55067] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2783), 1, - sym_identifier, - ACTIONS(2959), 1, - anon_sym_LPAREN2, - ACTIONS(2961), 1, - anon_sym_STAR, - STATE(1373), 1, - sym__declarator, - STATE(1926), 1, - sym_ms_based_modifier, - STATE(1310), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [55096] = 8, + [54616] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 1, - anon_sym___based, - ACTIONS(2985), 1, - sym_identifier, - ACTIONS(2987), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, - anon_sym_STAR, - STATE(1386), 1, - sym__field_declarator, - STATE(1767), 1, - sym_ms_based_modifier, - STATE(1363), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [55125] = 7, + ACTIONS(3612), 1, + anon_sym_LBRACK, + STATE(1370), 1, + sym_parameter_list, + STATE(1328), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3675), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [54643] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3616), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - STATE(1364), 1, + ACTIONS(3614), 1, + anon_sym_COLON, + STATE(1370), 1, sym_parameter_list, - STATE(1318), 2, + STATE(1554), 1, + sym_bitfield_clause, + STATE(1328), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3677), 5, + ACTIONS(3677), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [55152] = 8, + [54674] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2985), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2987), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2989), 1, + ACTIONS(2953), 1, + anon_sym_STAR, + STATE(1353), 1, + sym__declarator, + STATE(1813), 1, + sym_ms_based_modifier, + STATE(1327), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54703] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2957), 1, + anon_sym_LPAREN2, + ACTIONS(2959), 1, anon_sym_STAR, - STATE(1308), 1, + STATE(1389), 1, sym__field_declarator, - STATE(1767), 1, + STATE(1895), 1, sym_ms_based_modifier, STATE(1363), 5, sym_parenthesized_field_declarator, @@ -104115,125 +104646,104 @@ static const uint16_t ts_small_parse_table[] = { sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [55181] = 9, + [54732] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(3620), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3622), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, ACTIONS(3679), 1, aux_sym_preproc_if_token2, - STATE(1357), 1, + STATE(1358), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1737), 1, sym_enumerator, - ACTIONS(3624), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1965), 3, + STATE(1811), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [55212] = 8, + [54763] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(3636), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3638), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, ACTIONS(3681), 1, aux_sym_preproc_if_token2, - ACTIONS(3640), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1369), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1966), 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, - [55241] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3551), 1, - aux_sym_preproc_if_token2, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3620), 1, - aux_sym_preproc_else_token1, - ACTIONS(3622), 1, - aux_sym_preproc_elif_token1, - STATE(1302), 1, + STATE(1358), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1737), 1, sym_enumerator, - ACTIONS(3624), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1862), 3, + STATE(1934), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [55272] = 8, + [54794] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3527), 1, sym_identifier, - ACTIONS(3636), 1, + ACTIONS(3624), 1, aux_sym_preproc_else_token1, - ACTIONS(3638), 1, + ACTIONS(3626), 1, aux_sym_preproc_elif_token1, ACTIONS(3683), 1, aux_sym_preproc_if_token2, - ACTIONS(3640), 2, + ACTIONS(3628), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1303), 2, + STATE(1361), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1865), 3, + STATE(1880), 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, - [55301] = 8, + [54823] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym___based, - ACTIONS(2783), 1, + ACTIONS(2794), 1, sym_identifier, - ACTIONS(2959), 1, + ACTIONS(2951), 1, anon_sym_LPAREN2, - ACTIONS(2961), 1, + ACTIONS(2953), 1, anon_sym_STAR, - STATE(1349), 1, + STATE(1355), 1, sym__declarator, - STATE(1926), 1, + STATE(1813), 1, sym_ms_based_modifier, - STATE(1310), 5, + STATE(1327), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [55330] = 7, + [54852] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3616), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - STATE(1364), 1, + STATE(1370), 1, sym_parameter_list, - STATE(1318), 2, + STATE(1328), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(3685), 5, @@ -104242,56 +104752,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [55357] = 9, + [54879] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3569), 1, + aux_sym_preproc_if_token2, + ACTIONS(3592), 1, + sym_identifier, + ACTIONS(3657), 1, + aux_sym_preproc_else_token1, + ACTIONS(3659), 1, + aux_sym_preproc_elif_token1, + STATE(1301), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1737), 1, + sym_enumerator, + ACTIONS(3661), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1903), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [54910] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3527), 1, + sym_identifier, + ACTIONS(3624), 1, + aux_sym_preproc_else_token1, + ACTIONS(3626), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3687), 1, + aux_sym_preproc_if_token2, + ACTIONS(3628), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1303), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1909), 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, + [54939] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym___based, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2957), 1, anon_sym_LPAREN2, - ACTIONS(3616), 1, - anon_sym_LBRACK, - ACTIONS(3618), 1, - anon_sym_COLON, - STATE(1364), 1, - sym_parameter_list, - STATE(1569), 1, - sym_bitfield_clause, - STATE(1318), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3687), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [55388] = 9, + ACTIONS(2959), 1, + anon_sym_STAR, + STATE(1298), 1, + sym__field_declarator, + STATE(1895), 1, + sym_ms_based_modifier, + STATE(1363), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [54968] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(3620), 1, + ACTIONS(3657), 1, aux_sym_preproc_else_token1, - ACTIONS(3622), 1, + ACTIONS(3659), 1, aux_sym_preproc_elif_token1, ACTIONS(3689), 1, aux_sym_preproc_if_token2, - STATE(1296), 1, + STATE(1302), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1737), 1, sym_enumerator, - ACTIONS(3624), 2, + ACTIONS(3661), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1826), 3, + STATE(1859), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [55419] = 3, + [54999] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3693), 1, anon_sym_LBRACK, - ACTIONS(3691), 9, + STATE(1490), 1, + sym_gnu_asm_output_operand, + STATE(1768), 1, + sym_string_literal, + ACTIONS(3691), 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, + [55023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3697), 1, + anon_sym_LBRACK, + ACTIONS(3695), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104301,12 +104871,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55437] = 3, + [55041] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3697), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3699), 1, + anon_sym_COMMA, + ACTIONS(3703), 1, anon_sym_LBRACK, - ACTIONS(3695), 9, + STATE(1380), 1, + sym_parameter_list, + STATE(1461), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(3701), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1337), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3707), 1, + anon_sym_LBRACK, + ACTIONS(3705), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104316,12 +104907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55455] = 3, + [55089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, + ACTIONS(3711), 1, anon_sym_LBRACK, - ACTIONS(3699), 9, + ACTIONS(3709), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104331,94 +104922,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55473] = 7, + [55107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3705), 1, + ACTIONS(3715), 1, anon_sym_LBRACK, - STATE(1393), 1, - sym_parameter_list, - STATE(1332), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3703), 4, + ACTIONS(3713), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [55499] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3592), 1, - anon_sym_LBRACK, - ACTIONS(3707), 1, - anon_sym_LPAREN2, - ACTIONS(3709), 1, anon_sym_EQ, - STATE(142), 1, - sym_compound_statement, - STATE(921), 1, - sym__old_style_parameter_list, - STATE(1243), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55531] = 7, + anon_sym_asm, + anon_sym___asm__, + [55125] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3705), 1, + ACTIONS(3703), 1, anon_sym_LBRACK, - STATE(1393), 1, + STATE(1380), 1, sym_parameter_list, - STATE(1332), 2, + STATE(1337), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3711), 4, + ACTIONS(3717), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [55557] = 6, + [55151] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3715), 1, + ACTIONS(3721), 1, anon_sym_LBRACK, - STATE(1494), 1, + STATE(1459), 1, sym_gnu_asm_input_operand, - STATE(1954), 1, - sym_string_literal, - ACTIONS(3713), 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, - [55581] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3719), 1, - anon_sym_LBRACK, - STATE(1485), 1, - sym_gnu_asm_output_operand, - STATE(1936), 1, + STATE(1967), 1, sym_string_literal, - ACTIONS(3717), 2, + ACTIONS(3719), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(97), 5, @@ -104427,177 +104974,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55605] = 5, + [55175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3723), 1, + ACTIONS(3725), 1, anon_sym_LBRACK, - STATE(1257), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3721), 6, + ACTIONS(3723), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [55627] = 10, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [55193] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3707), 1, + ACTIONS(3727), 1, anon_sym_LPAREN2, - ACTIONS(3709), 1, + ACTIONS(3729), 1, anon_sym_EQ, - STATE(285), 1, + STATE(288), 1, sym_compound_statement, - STATE(921), 1, + STATE(928), 1, sym__old_style_parameter_list, - STATE(1243), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55659] = 7, + [55225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3705), 1, + ACTIONS(3733), 1, anon_sym_LBRACK, - STATE(1393), 1, - sym_parameter_list, - STATE(1332), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3725), 4, + ACTIONS(3731), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - [55685] = 10, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [55243] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3707), 1, + ACTIONS(3727), 1, anon_sym_LPAREN2, - ACTIONS(3709), 1, + ACTIONS(3729), 1, anon_sym_EQ, - STATE(259), 1, + STATE(270), 1, sym_compound_statement, - STATE(921), 1, + STATE(928), 1, sym__old_style_parameter_list, - STATE(1243), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55717] = 3, + [55275] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACK, - ACTIONS(3727), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, anon_sym_LBRACE, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(3729), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [55735] = 9, + STATE(118), 1, + sym_compound_statement, + STATE(928), 1, + sym__old_style_parameter_list, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55307] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3705), 1, + ACTIONS(3703), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, - anon_sym_COMMA, - STATE(1393), 1, + STATE(1380), 1, sym_parameter_list, - STATE(1481), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(3733), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1332), 2, + STATE(1337), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3737), 1, - anon_sym_LBRACK, - ACTIONS(3735), 9, + ACTIONS(3735), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + [55333] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, anon_sym_LBRACE, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + ACTIONS(3729), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [55783] = 3, + STATE(343), 1, + sym_compound_statement, + STATE(928), 1, + sym__old_style_parameter_list, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55365] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3703), 1, anon_sym_LBRACK, - ACTIONS(3739), 9, + STATE(1380), 1, + sym_parameter_list, + STATE(1337), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3737), 4, 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__, - [55801] = 7, + anon_sym___attribute__, + [55391] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3705), 1, + ACTIONS(3703), 1, anon_sym_LBRACK, - STATE(1393), 1, + STATE(1380), 1, sym_parameter_list, - STATE(1332), 2, + STATE(1337), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3743), 4, + ACTIONS(3739), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [55827] = 3, + [55417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, + ACTIONS(3743), 1, anon_sym_LBRACK, - ACTIONS(3745), 9, + ACTIONS(3741), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104607,52 +105164,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [55845] = 10, + [55435] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3592), 1, + ACTIONS(3747), 1, anon_sym_LBRACK, - ACTIONS(3707), 1, - anon_sym_LPAREN2, - ACTIONS(3709), 1, - anon_sym_EQ, - STATE(376), 1, - sym_compound_statement, - STATE(921), 1, - sym__old_style_parameter_list, - STATE(1243), 1, - sym_parameter_list, - STATE(1279), 2, + STATE(1257), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55877] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - sym_identifier, - ACTIONS(3753), 1, - sym_system_lib_string, - STATE(1882), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3751), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55898] = 5, + ACTIONS(3745), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [55457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3630), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1620), 2, + STATE(1548), 2, sym__string, sym_concatenated_string, ACTIONS(97), 5, @@ -104661,65 +105197,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55919] = 4, + [55478] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 1, - anon_sym_LBRACK, - ACTIONS(3691), 4, - anon_sym_LPAREN2, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(582), 1, anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3755), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [55938] = 5, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3727), 1, + anon_sym_LPAREN2, + STATE(302), 1, + sym_compound_statement, + STATE(928), 1, + sym__old_style_parameter_list, + STATE(1243), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55507] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3759), 1, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1257), 2, + ACTIONS(3729), 1, + anon_sym_EQ, + STATE(288), 1, + sym_compound_statement, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3757), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [55959] = 9, + [55536] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + sym_identifier, + ACTIONS(3753), 1, + sym_system_lib_string, + STATE(1759), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3751), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55557] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3707), 1, + ACTIONS(3727), 1, anon_sym_LPAREN2, - STATE(374), 1, + STATE(119), 1, sym_compound_statement, - STATE(921), 1, + STATE(928), 1, sym__old_style_parameter_list, - STATE(1241), 1, + STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55988] = 5, + [55586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3630), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1547), 2, + STATE(1632), 2, sym__string, sym_concatenated_string, ACTIONS(97), 5, @@ -104728,72 +105289,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56009] = 7, + [55607] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3705), 1, + ACTIONS(3703), 1, anon_sym_LBRACK, - STATE(1393), 1, + STATE(1380), 1, sym_parameter_list, - STATE(1332), 2, + STATE(1337), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3761), 3, + ACTIONS(3755), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [56034] = 9, + [55632] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(582), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3707), 1, + ACTIONS(3727), 1, anon_sym_LPAREN2, - STATE(298), 1, + STATE(320), 1, sym_compound_statement, - STATE(921), 1, + STATE(928), 1, sym__old_style_parameter_list, - STATE(1241), 1, + STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56063] = 9, + [55661] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(582), 1, + ACTIONS(3759), 1, + anon_sym_LBRACK, + STATE(1257), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3757), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + [55682] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3709), 1, + ACTIONS(3729), 1, anon_sym_EQ, - STATE(285), 1, + STATE(118), 1, sym_compound_statement, - STATE(1243), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56092] = 5, + [55711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3761), 1, sym_identifier, - ACTIONS(3765), 1, + ACTIONS(3763), 1, sym_system_lib_string, - STATE(1781), 2, + STATE(1818), 2, sym_preproc_call_expression, sym_string_literal, ACTIONS(3751), 5, @@ -104802,54 +105379,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56113] = 9, + [55732] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3707), 1, + ACTIONS(3727), 1, anon_sym_LPAREN2, - STATE(293), 1, + STATE(255), 1, sym_compound_statement, - STATE(921), 1, + STATE(928), 1, sym__old_style_parameter_list, - STATE(1241), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56142] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(376), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3592), 1, - anon_sym_LBRACK, - ACTIONS(3709), 1, - anon_sym_EQ, - STATE(259), 1, - sym_compound_statement, STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56171] = 5, + [55761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, + ACTIONS(3765), 1, sym_identifier, - ACTIONS(3769), 1, + ACTIONS(3767), 1, sym_system_lib_string, - STATE(1971), 2, + STATE(1803), 2, sym_preproc_call_expression, sym_string_literal, ACTIONS(3751), 5, @@ -104858,34 +105415,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56192] = 9, + [55782] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1897), 1, + anon_sym_LPAREN2, + ACTIONS(1899), 1, + anon_sym_STAR, + ACTIONS(2802), 1, + anon_sym_LBRACK, + STATE(1437), 1, + sym_parameter_list, + STATE(1471), 1, + sym__abstract_declarator, + STATE(1455), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [55807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3743), 1, + anon_sym_LBRACK, + ACTIONS(3741), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3769), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [55826] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3592), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3707), 1, + ACTIONS(3729), 1, + anon_sym_EQ, + STATE(270), 1, + sym_compound_statement, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55855] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(116), 1, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, + anon_sym_EQ, + STATE(343), 1, sym_compound_statement, - STATE(921), 1, - sym__old_style_parameter_list, - STATE(1241), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56221] = 5, + [55884] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3771), 1, sym_identifier, ACTIONS(3773), 1, sym_system_lib_string, - STATE(1888), 2, + STATE(1794), 2, sym_preproc_call_expression, sym_string_literal, ACTIONS(3751), 5, @@ -104894,34 +105504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56242] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3592), 1, - anon_sym_LBRACK, - ACTIONS(3709), 1, - anon_sym_EQ, - STATE(376), 1, - sym_compound_statement, - STATE(1243), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56271] = 5, + [55905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3630), 1, sym_identifier, - STATE(654), 1, + STATE(660), 1, sym_string_literal, - STATE(1525), 2, + STATE(1599), 2, sym__string, sym_concatenated_string, ACTIONS(97), 5, @@ -104930,45 +105520,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56292] = 9, + [55926] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3721), 1, + anon_sym_LBRACK, + STATE(1635), 1, + sym_gnu_asm_input_operand, + STATE(1967), 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, + [55946] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3709), 1, - anon_sym_EQ, - STATE(142), 1, + STATE(280), 1, sym_compound_statement, - STATE(1243), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56321] = 7, + [55972] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(1909), 1, - anon_sym_STAR, - ACTIONS(2791), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1447), 1, + STATE(299), 1, + sym_compound_statement, + STATE(1244), 1, sym_parameter_list, - STATE(1470), 1, - sym__abstract_declarator, - STATE(1445), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [56346] = 3, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55998] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3777), 1, @@ -104981,25 +105584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56362] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3592), 1, - anon_sym_LBRACK, - STATE(130), 1, - sym_compound_statement, - STATE(1241), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56388] = 3, + [56014] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3781), 1, @@ -105012,102 +105597,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56404] = 8, + [56030] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(582), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(296), 1, + STATE(135), 1, sym_compound_statement, STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56430] = 8, + [56056] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(374), 1, + STATE(119), 1, sym_compound_statement, - STATE(1241), 1, + STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56456] = 8, + [56082] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(255), 1, + STATE(258), 1, sym_compound_statement, - STATE(1241), 1, + STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56482] = 8, + [56108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3785), 1, anon_sym_LBRACK, - STATE(298), 1, - sym_compound_statement, - STATE(1241), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56508] = 8, + ACTIONS(3783), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56124] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(376), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(273), 1, + STATE(136), 1, sym_compound_statement, - STATE(1243), 1, + STATE(1244), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56534] = 3, + [56150] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3787), 1, + sym_identifier, + ACTIONS(3792), 1, + aux_sym_preproc_elif_token1, + STATE(1358), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1737), 1, + sym_enumerator, + ACTIONS(3790), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [56172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, anon_sym_LBRACK, - ACTIONS(3783), 7, + ACTIONS(3794), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105115,60 +105711,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56550] = 6, + [56188] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(327), 1, + sym_compound_statement, + STATE(1243), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3798), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3803), 1, aux_sym_preproc_elif_token1, - STATE(1357), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1361), 2, sym_enumerator, - ACTIONS(3790), 4, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(3801), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [56572] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3715), 1, - anon_sym_LBRACK, - STATE(1634), 1, - sym_gnu_asm_input_operand, - STATE(1954), 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, - [56592] = 7, + [56234] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1241), 1, + STATE(320), 1, + sym_compound_statement, + STATE(1243), 1, sym_parameter_list, - ACTIONS(3794), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56616] = 3, + [56260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3807), 1, anon_sym_LBRACK, - ACTIONS(3796), 7, + ACTIONS(3805), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105176,26 +105775,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56632] = 4, + [56276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 1, + ACTIONS(3811), 1, aux_sym_preproc_elif_token1, - ACTIONS(3804), 1, + ACTIONS(3813), 1, anon_sym_EQ, - ACTIONS(3800), 6, + ACTIONS(3809), 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, - [56650] = 3, + [56294] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(376), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(286), 1, + sym_compound_statement, + STATE(1243), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56320] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(318), 1, + sym_compound_statement, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 1, + ACTIONS(3817), 1, anon_sym_LBRACK, - ACTIONS(3806), 7, + ACTIONS(3815), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105203,12 +105838,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56666] = 3, + [56362] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + STATE(302), 1, + sym_compound_statement, + STATE(1243), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(3821), 1, anon_sym_LBRACK, - ACTIONS(3810), 7, + ACTIONS(3819), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105216,12 +105869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56682] = 3, + [56404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3825), 1, anon_sym_LBRACK, - ACTIONS(3814), 7, + ACTIONS(3823), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105229,755 +105882,685 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [56698] = 8, + [56420] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(371), 1, + STATE(255), 1, sym_compound_statement, STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56724] = 8, + [56446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3829), 1, anon_sym_LBRACK, - STATE(135), 1, - sym_compound_statement, - STATE(1243), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56750] = 8, + ACTIONS(3827), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56462] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3693), 1, anon_sym_LBRACK, - STATE(356), 1, - sym_compound_statement, - STATE(1241), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56776] = 8, + STATE(1582), 1, + sym_gnu_asm_output_operand, + STATE(1768), 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, + [56482] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(376), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(293), 1, - sym_compound_statement, - STATE(1241), 1, + STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + ACTIONS(3831), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56802] = 5, + [56506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 1, - sym_identifier, - ACTIONS(3823), 1, - aux_sym_preproc_elif_token1, - STATE(1369), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(3821), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [56822] = 3, + ACTIONS(1907), 1, + anon_sym_LBRACK, + ACTIONS(3833), 1, + anon_sym_EQ, + ACTIONS(3835), 1, + anon_sym_DOT, + STATE(1388), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [56525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3839), 1, anon_sym_LBRACK, - ACTIONS(3825), 7, + ACTIONS(3837), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56838] = 3, + [56540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3831), 1, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(3829), 7, + ACTIONS(3841), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [56854] = 8, + [56555] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3703), 1, anon_sym_LBRACK, - STATE(116), 1, - sym_compound_statement, - STATE(1241), 1, + ACTIONS(3845), 1, + anon_sym_RPAREN, + STATE(1380), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1337), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [56880] = 8, + [56578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(376), 1, - anon_sym_LBRACE, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - STATE(281), 1, - sym_compound_statement, - STATE(1241), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56906] = 5, + ACTIONS(3847), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [56593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, + ACTIONS(3853), 1, anon_sym_LBRACK, - STATE(1608), 1, - sym_gnu_asm_output_operand, - STATE(1936), 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, - [56926] = 4, + ACTIONS(3851), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [56608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3857), 1, anon_sym___attribute__, - STATE(1389), 2, + STATE(1381), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3833), 4, + ACTIONS(3855), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [56943] = 3, + [56625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, - anon_sym_LBRACK, - ACTIONS(3835), 6, + ACTIONS(3398), 1, + anon_sym___attribute__, + STATE(1381), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3860), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [56958] = 3, + anon_sym_asm, + anon_sym___asm__, + [56642] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3839), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [56973] = 3, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(3862), 1, + sym_identifier, + STATE(721), 1, + sym_field_declaration_list, + STATE(1438), 1, + sym_attribute_specifier, + STATE(1638), 1, + sym_ms_declspec_modifier, + [56667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3845), 1, + ACTIONS(3866), 1, anon_sym_LBRACK, - ACTIONS(3843), 6, + ACTIONS(3864), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [56988] = 4, + [56682] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(3851), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3847), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [57005] = 7, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3868), 1, + anon_sym_RPAREN, + STATE(1243), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56705] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - ACTIONS(3853), 1, + ACTIONS(3870), 1, anon_sym_RPAREN, - STATE(1241), 1, + STATE(1243), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1280), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [57028] = 5, + [56728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3874), 1, + anon_sym_COMMA, + ACTIONS(3876), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3872), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [56745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3881), 1, anon_sym_EQ, - ACTIONS(3857), 1, + ACTIONS(3883), 1, anon_sym_DOT, - STATE(1385), 4, + STATE(1388), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [57047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3861), 1, - anon_sym_LBRACK, - ACTIONS(3859), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [57062] = 7, + [56764] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - ACTIONS(3709), 1, - anon_sym_EQ, - STATE(1243), 1, + ACTIONS(3886), 1, + anon_sym_RPAREN, + STATE(1370), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1328), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [57085] = 3, + [56787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(3890), 1, anon_sym_LBRACK, - ACTIONS(3863), 6, + ACTIONS(3888), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [57100] = 5, + [56802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 1, + ACTIONS(3894), 1, anon_sym_LBRACK, - ACTIONS(3870), 1, - anon_sym_EQ, - ACTIONS(3872), 1, - anon_sym_DOT, - STATE(1385), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [57119] = 7, + ACTIONS(3892), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [56817] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3616), 1, + ACTIONS(3612), 1, anon_sym_LBRACK, - ACTIONS(3875), 1, + ACTIONS(3896), 1, anon_sym_RPAREN, - STATE(1364), 1, + STATE(1370), 1, sym_parameter_list, - STATE(1318), 2, + STATE(1328), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [57142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3502), 1, - anon_sym___attribute__, - STATE(1389), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3527), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [57159] = 8, + [56840] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2412), 1, - anon_sym_LBRACE, - ACTIONS(3877), 1, - sym_identifier, - STATE(720), 1, - sym_field_declaration_list, - STATE(1443), 1, - sym_attribute_specifier, - STATE(1610), 1, - sym_ms_declspec_modifier, - [57184] = 4, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3582), 1, + anon_sym_LBRACK, + ACTIONS(3729), 1, + anon_sym_EQ, + STATE(1244), 1, + sym_parameter_list, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [56863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - STATE(1389), 2, + STATE(1381), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3879), 4, + ACTIONS(3557), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [57201] = 3, + [56880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, + ACTIONS(3900), 1, anon_sym_LBRACK, - ACTIONS(3884), 6, + ACTIONS(3898), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [57216] = 3, + [56895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(3904), 1, anon_sym_LBRACK, - ACTIONS(3888), 6, + ACTIONS(3902), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [57231] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3705), 1, - anon_sym_LBRACK, - ACTIONS(3892), 1, - anon_sym_RPAREN, - STATE(1393), 1, - sym_parameter_list, - STATE(1332), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [57254] = 3, + [56910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, + ACTIONS(3908), 1, anon_sym_LBRACK, - ACTIONS(3894), 6, + ACTIONS(3906), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [57269] = 7, + [56925] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3592), 1, + ACTIONS(3703), 1, anon_sym_LBRACK, - ACTIONS(3898), 1, + ACTIONS(3910), 1, anon_sym_RPAREN, - STATE(1241), 1, + STATE(1380), 1, sym_parameter_list, - STATE(1279), 2, + STATE(1337), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [57292] = 3, + [56948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3790), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [56962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(3912), 1, + anon_sym_LPAREN2, + STATE(1408), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3914), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [56978] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3900), 6, + STATE(1444), 1, + sym_parameter_list, + ACTIONS(3916), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [57307] = 7, + anon_sym_COLON, + [56996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3616), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, - anon_sym_RPAREN, - STATE(1364), 1, + STATE(1444), 1, sym_parameter_list, - STATE(1318), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [57330] = 7, + ACTIONS(3920), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3705), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3906), 1, - anon_sym_RPAREN, - STATE(1393), 1, + STATE(1444), 1, sym_parameter_list, - STATE(1332), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [57353] = 3, + ACTIONS(3922), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 1, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(3926), 1, + anon_sym_SEMI, + STATE(1557), 1, + sym_gnu_asm_expression, + STATE(1559), 1, + aux_sym_declaration_repeat1, + ACTIONS(3928), 2, + anon_sym_asm, + anon_sym___asm__, + [57052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_LPAREN2, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3908), 6, + STATE(1444), 1, + sym_parameter_list, + ACTIONS(3930), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [57368] = 3, + anon_sym_COLON, + [57070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(3932), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3914), 4, + ACTIONS(3934), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57382] = 3, + [57084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3916), 2, + ACTIONS(3936), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3918), 4, + ACTIONS(3938), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57396] = 5, + [57098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3940), 1, anon_sym_LPAREN2, - ACTIONS(3922), 1, - anon_sym_LBRACK, - STATE(1454), 1, - sym_parameter_list, - ACTIONS(3920), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57414] = 3, + STATE(1427), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3914), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [57114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 2, + ACTIONS(3942), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3926), 4, + ACTIONS(3944), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57428] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3922), 1, - anon_sym_LBRACK, - STATE(1454), 1, - sym_parameter_list, - ACTIONS(3928), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57446] = 5, + [57128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3922), 1, - anon_sym_LBRACK, - STATE(1454), 1, - sym_parameter_list, - ACTIONS(3930), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57464] = 3, + STATE(618), 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, + [57142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3792), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3790), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3653), 2, + anon_sym_RBRACE, sym_identifier, - [57478] = 4, + ACTIONS(3946), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, - anon_sym_LPAREN2, - STATE(1434), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3934), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [57494] = 6, + ACTIONS(3948), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3950), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3952), 1, anon_sym_SEMI, - STATE(1550), 1, + STATE(1619), 1, sym_gnu_asm_expression, - STATE(1555), 1, + STATE(1620), 1, aux_sym_declaration_repeat1, - ACTIONS(3940), 2, + ACTIONS(3928), 2, anon_sym_asm, anon_sym___asm__, - [57514] = 6, + [57190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(3942), 1, + ACTIONS(3954), 1, anon_sym_SEMI, - STATE(1574), 1, + STATE(1568), 1, sym_gnu_asm_expression, STATE(1575), 1, aux_sym_declaration_repeat1, - ACTIONS(3940), 2, - anon_sym_asm, - anon_sym___asm__, - [57534] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(3944), 1, - anon_sym_SEMI, - STATE(1579), 1, - sym_gnu_asm_expression, - STATE(1580), 1, - aux_sym_declaration_repeat1, - ACTIONS(3940), 2, + ACTIONS(3928), 2, anon_sym_asm, anon_sym___asm__, - [57554] = 3, + [57210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 2, + ACTIONS(3956), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3948), 4, + ACTIONS(3958), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57568] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(3950), 1, - anon_sym_SEMI, - STATE(1582), 1, - sym_gnu_asm_expression, - STATE(1583), 1, - aux_sym_declaration_repeat1, - ACTIONS(3940), 2, - anon_sym_asm, - anon_sym___asm__, - [57588] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(617), 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, - [57602] = 4, + [57224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - STATE(1413), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3954), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [57618] = 6, + ACTIONS(3918), 1, + anon_sym_LBRACK, + STATE(1444), 1, + sym_parameter_list, + ACTIONS(3960), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(3957), 1, + ACTIONS(3962), 1, anon_sym_SEMI, - STATE(1590), 1, + STATE(1529), 1, sym_gnu_asm_expression, - STATE(1591), 1, + STATE(1549), 1, aux_sym_declaration_repeat1, - ACTIONS(3940), 2, + ACTIONS(3928), 2, anon_sym_asm, anon_sym___asm__, - [57638] = 6, + [57262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, - anon_sym_SEMI, - STATE(1593), 1, - sym_gnu_asm_expression, - STATE(1594), 1, - aux_sym_declaration_repeat1, - ACTIONS(3940), 2, - anon_sym_asm, - anon_sym___asm__, - [57658] = 6, + ACTIONS(3964), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(3966), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [57276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(3961), 1, + ACTIONS(3968), 1, anon_sym_SEMI, - STATE(1598), 1, + STATE(1576), 1, sym_gnu_asm_expression, - STATE(1599), 1, + STATE(1577), 1, aux_sym_declaration_repeat1, - ACTIONS(3940), 2, + ACTIONS(3928), 2, anon_sym_asm, anon_sym___asm__, - [57678] = 6, + [57296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(3963), 1, + ACTIONS(3970), 1, anon_sym_SEMI, - STATE(1601), 1, + STATE(1636), 1, sym_gnu_asm_expression, - STATE(1602), 1, + STATE(1637), 1, aux_sym_declaration_repeat1, - ACTIONS(3940), 2, + ACTIONS(3928), 2, anon_sym_asm, anon_sym___asm__, - [57698] = 3, + [57316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 2, + ACTIONS(3932), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3965), 4, + ACTIONS(3934), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57712] = 3, + [57330] = 3, ACTIONS(3), 1, sym_comment, - STATE(1923), 1, + STATE(1963), 1, sym_string_literal, ACTIONS(97), 5, anon_sym_L_DQUOTE, @@ -105985,172 +106568,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [57726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3924), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3926), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [57740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3969), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [57754] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(3971), 1, - anon_sym_SEMI, - STATE(1542), 1, - sym_gnu_asm_expression, - STATE(1543), 1, - aux_sym_declaration_repeat1, - ACTIONS(3940), 2, - anon_sym_asm, - anon_sym___asm__, - [57774] = 5, + [57344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3922), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(1454), 1, + STATE(1444), 1, sym_parameter_list, - ACTIONS(3973), 3, + ACTIONS(3972), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [57792] = 3, + [57362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3975), 2, + ACTIONS(3974), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3977), 4, + ACTIONS(3976), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57806] = 3, + [57376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3979), 2, + ACTIONS(3978), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3981), 4, + ACTIONS(3980), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57820] = 3, + [57390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3983), 2, + ACTIONS(3964), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(3985), 4, + ACTIONS(3966), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [57834] = 6, + [57404] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3982), 1, + anon_sym_LPAREN2, + STATE(1427), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3984), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [57420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(3987), 1, anon_sym_SEMI, - STATE(1551), 1, + STATE(1530), 1, sym_gnu_asm_expression, - STATE(1552), 1, + STATE(1531), 1, aux_sym_declaration_repeat1, - ACTIONS(3940), 2, + ACTIONS(3928), 2, anon_sym_asm, anon_sym___asm__, - [57854] = 6, + [57440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(3989), 1, anon_sym_SEMI, - STATE(1565), 1, + STATE(1533), 1, sym_gnu_asm_expression, - STATE(1566), 1, + STATE(1534), 1, aux_sym_declaration_repeat1, - ACTIONS(3940), 2, + ACTIONS(3928), 2, anon_sym_asm, anon_sym___asm__, - [57874] = 6, + [57460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(3991), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1541), 1, sym_gnu_asm_expression, - STATE(1617), 1, + STATE(1542), 1, aux_sym_declaration_repeat1, - ACTIONS(3940), 2, + ACTIONS(3928), 2, anon_sym_asm, anon_sym___asm__, - [57894] = 3, + [57480] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3983), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(3985), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [57908] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3922), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(1454), 1, + STATE(1444), 1, sym_parameter_list, ACTIONS(3993), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [57926] = 6, + [57498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3592), 1, - anon_sym_LBRACK, - STATE(1243), 1, - sym_parameter_list, - STATE(1279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [57946] = 3, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(3995), 1, + anon_sym_SEMI, + STATE(1544), 1, + sym_gnu_asm_expression, + STATE(1545), 1, + aux_sym_declaration_repeat1, + ACTIONS(3928), 2, + anon_sym_asm, + anon_sym___asm__, + [57518] = 3, ACTIONS(3), 1, sym_comment, - STATE(1978), 1, + STATE(1752), 1, sym_string_literal, ACTIONS(97), 5, anon_sym_L_DQUOTE, @@ -106158,45 +106706,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [57960] = 4, + [57532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3995), 1, - anon_sym_LPAREN2, - STATE(1413), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3934), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [57976] = 5, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(3997), 1, + anon_sym_SEMI, + STATE(1634), 1, + sym_gnu_asm_expression, + STATE(1641), 1, + aux_sym_declaration_repeat1, + ACTIONS(3928), 2, + anon_sym_asm, + anon_sym___asm__, + [57552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3922), 1, - anon_sym_LBRACK, - STATE(1454), 1, - sym_parameter_list, - ACTIONS(3997), 3, + ACTIONS(3924), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57994] = 5, + ACTIONS(3999), 1, + anon_sym_SEMI, + STATE(1609), 1, + sym_gnu_asm_expression, + STATE(1629), 1, + aux_sym_declaration_repeat1, + ACTIONS(3928), 2, + anon_sym_asm, + anon_sym___asm__, + [57572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3922), 1, + ACTIONS(3582), 1, anon_sym_LBRACK, - STATE(1454), 1, + STATE(1244), 1, sym_parameter_list, - ACTIONS(3999), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [58012] = 2, + STATE(1280), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57592] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4001), 5, @@ -106205,16 +106757,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58023] = 2, + [57603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4003), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4003), 1, + sym_identifier, + STATE(727), 1, + sym_field_declaration_list, + STATE(1552), 1, + sym_ms_declspec_modifier, + [57622] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, anon_sym_LPAREN2, + ACTIONS(3918), 1, anon_sym_LBRACK, - anon_sym_COLON, - [58034] = 2, + STATE(1444), 1, + sym_parameter_list, + ACTIONS(3831), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57639] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4005), 5, @@ -106223,7 +106791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58045] = 2, + [57650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4007), 5, @@ -106232,7 +106800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58056] = 2, + [57661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4009), 5, @@ -106241,155 +106809,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(4011), 1, - aux_sym_preproc_if_token2, - STATE(1379), 1, - sym_enumerator, - STATE(1467), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1492), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [58086] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2412), 1, - anon_sym_LBRACE, - ACTIONS(4013), 1, - sym_identifier, - STATE(731), 1, - sym_field_declaration_list, - STATE(1537), 1, - sym_ms_declspec_modifier, - [58105] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - ACTIONS(4017), 1, - anon_sym_COLON_COLON, - STATE(1714), 1, - sym_argument_list, - ACTIONS(4015), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [58122] = 2, + [57672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 5, + ACTIONS(4011), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58133] = 5, + [57683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, - anon_sym_LPAREN2, - ACTIONS(3922), 1, - anon_sym_LBRACK, - STATE(1454), 1, - sym_parameter_list, - ACTIONS(3794), 2, + ACTIONS(4013), 5, anon_sym_COMMA, anon_sym_RPAREN, - [58150] = 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [57694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4021), 5, + ACTIONS(4015), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58161] = 2, + [57705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 5, + ACTIONS(4017), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58172] = 2, + [57716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 5, + ACTIONS(4019), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58183] = 6, + [57727] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, ACTIONS(2412), 1, anon_sym_LBRACE, - ACTIONS(4027), 1, + ACTIONS(4021), 1, sym_identifier, - STATE(724), 1, + STATE(720), 1, sym_field_declaration_list, - STATE(1616), 1, + STATE(1621), 1, sym_ms_declspec_modifier, - [58202] = 4, + [57746] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1660), 1, + sym_gnu_asm_expression, + ACTIONS(3928), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4023), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [57761] = 4, ACTIONS(3), 1, sym_comment, STATE(1728), 1, sym_gnu_asm_expression, - ACTIONS(3940), 2, + ACTIONS(3928), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(4029), 2, + ACTIONS(4025), 2, anon_sym_COMMA, anon_sym_SEMI, - [58217] = 2, + [57776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 5, + ACTIONS(3527), 1, + sym_identifier, + ACTIONS(4027), 1, + aux_sym_preproc_if_token2, + STATE(1387), 1, + sym_enumerator, + STATE(1468), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1469), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [57795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58228] = 2, + [57806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4033), 5, + ACTIONS(4031), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58239] = 2, + [57817] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + ACTIONS(4035), 1, + anon_sym_COLON_COLON, + STATE(1681), 1, + sym_argument_list, + ACTIONS(4033), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [57834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 5, + ACTIONS(4037), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58250] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1686), 1, - sym_gnu_asm_expression, - ACTIONS(3940), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4037), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [58265] = 2, + [57845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4039), 5, @@ -106398,5116 +106950,5110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [58276] = 4, + [57856] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3398), 1, + anon_sym___attribute__, ACTIONS(4041), 1, + anon_sym_SEMI, + STATE(1381), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [57870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4043), 1, anon_sym_COMMA, - STATE(1515), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4043), 2, + STATE(1494), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4045), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [57884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4047), 1, + anon_sym_COMMA, + STATE(1495), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4049), 2, anon_sym_RPAREN, anon_sym_COLON, - [58290] = 4, + [57898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - ACTIONS(4045), 1, + ACTIONS(4051), 1, anon_sym_SEMI, - STATE(1389), 2, + STATE(1381), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58304] = 4, + [57912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4047), 1, + ACTIONS(3699), 1, anon_sym_COMMA, - STATE(1459), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4050), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [58318] = 5, - ACTIONS(3323), 1, + STATE(1487), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4053), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [57926] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, - anon_sym_DQUOTE, - ACTIONS(4054), 1, - aux_sym_string_literal_token1, - ACTIONS(4056), 1, - sym_escape_sequence, - STATE(1477), 1, - aux_sym_string_literal_repeat1, - [58334] = 4, + ACTIONS(4055), 1, + anon_sym___except, + ACTIONS(4057), 1, + anon_sym___finally, + STATE(163), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [57940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_COMMA, - STATE(1513), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4060), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [58348] = 5, - ACTIONS(3323), 1, + ACTIONS(4059), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [57950] = 5, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4062), 1, + ACTIONS(4061), 1, aux_sym_preproc_include_token2, - ACTIONS(4064), 1, + ACTIONS(4063), 1, anon_sym_LPAREN, - ACTIONS(4066), 1, + ACTIONS(4065), 1, sym_preproc_arg, - STATE(1716), 1, + STATE(1656), 1, sym_preproc_params, - [58364] = 4, + [57966] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_COMMA, + STATE(1465), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4070), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [57980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - ACTIONS(4068), 1, + ACTIONS(4072), 1, anon_sym_SEMI, - STATE(1495), 2, + STATE(1457), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58378] = 4, + [57994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, - anon_sym_COMMA, - STATE(1483), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4070), 2, - anon_sym_SEMI, + ACTIONS(3398), 1, anon_sym___attribute__, - [58392] = 5, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4072), 1, - anon_sym_DQUOTE, ACTIONS(4074), 1, - aux_sym_string_literal_token1, - ACTIONS(4076), 1, - sym_escape_sequence, - STATE(1466), 1, - aux_sym_string_literal_repeat1, - [58408] = 5, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4078), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - aux_sym_string_literal_token1, - ACTIONS(4082), 1, - sym_escape_sequence, - STATE(1517), 1, - aux_sym_string_literal_repeat1, - [58424] = 5, + anon_sym_SEMI, + STATE(1381), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58008] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(4076), 1, aux_sym_preproc_if_token2, - STATE(1357), 1, + STATE(1358), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1737), 1, sym_enumerator, - [58440] = 5, - ACTIONS(3323), 1, + [58024] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - aux_sym_preproc_include_token2, - ACTIONS(4088), 1, - sym_preproc_arg, - STATE(1671), 1, - sym_preproc_params, - [58456] = 4, + ACTIONS(3527), 1, + sym_identifier, + ACTIONS(4078), 1, + aux_sym_preproc_if_token2, + STATE(1361), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - ACTIONS(4090), 1, + ACTIONS(4080), 1, anon_sym_SEMI, - STATE(1493), 2, + STATE(1474), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58470] = 5, + [58052] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3922), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(4092), 1, + ACTIONS(4082), 1, anon_sym_RPAREN, - STATE(1454), 1, + STATE(1444), 1, sym_parameter_list, - [58486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4094), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [58496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4096), 1, - anon_sym_COMMA, - STATE(1459), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4098), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [58510] = 4, + [58068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4084), 1, anon_sym___except, - ACTIONS(4102), 1, + ACTIONS(4086), 1, anon_sym___finally, - STATE(223), 2, + STATE(204), 2, sym_seh_except_clause, sym_seh_finally_clause, - [58524] = 4, + [58082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 1, - anon_sym_COMMA, - STATE(1474), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4107), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [58538] = 5, + ACTIONS(3398), 1, + anon_sym___attribute__, + ACTIONS(4088), 1, + anon_sym_SEMI, + STATE(1476), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4109), 1, - anon_sym_COMMA, - ACTIONS(4111), 1, - anon_sym_RPAREN, - STATE(1530), 1, - aux_sym__old_style_parameter_list_repeat1, - STATE(1536), 1, - aux_sym_parameter_list_repeat1, - [58554] = 4, - ACTIONS(3323), 1, + ACTIONS(3398), 1, + anon_sym___attribute__, + ACTIONS(4090), 1, + anon_sym_SEMI, + STATE(1381), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58110] = 4, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4113), 1, + ACTIONS(4092), 1, anon_sym_SQUOTE, - STATE(1505), 1, + STATE(1509), 1, aux_sym_char_literal_repeat1, - ACTIONS(4115), 2, + ACTIONS(4094), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [58568] = 5, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4080), 1, - aux_sym_string_literal_token1, - ACTIONS(4082), 1, - sym_escape_sequence, - ACTIONS(4117), 1, - anon_sym_DQUOTE, - STATE(1517), 1, - aux_sym_string_literal_repeat1, - [58584] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym___except, - ACTIONS(4121), 1, - anon_sym___finally, - STATE(202), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [58598] = 4, + [58124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - ACTIONS(4123), 1, + ACTIONS(4096), 1, anon_sym_SEMI, - STATE(1458), 2, + STATE(1381), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58612] = 4, + [58138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - ACTIONS(4125), 1, + ACTIONS(4098), 1, anon_sym_SEMI, - STATE(1389), 2, + STATE(1381), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58626] = 4, - ACTIONS(3), 1, + [58152] = 5, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3731), 1, - anon_sym_COMMA, - STATE(1520), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4127), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [58640] = 4, + ACTIONS(4063), 1, + anon_sym_LPAREN, + ACTIONS(4100), 1, + aux_sym_preproc_include_token2, + ACTIONS(4102), 1, + sym_preproc_arg, + STATE(1670), 1, + sym_preproc_params, + [58168] = 5, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4063), 1, + anon_sym_LPAREN, + ACTIONS(4104), 1, + aux_sym_preproc_include_token2, + ACTIONS(4106), 1, + sym_preproc_arg, + STATE(1677), 1, + sym_preproc_params, + [58184] = 5, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4063), 1, + anon_sym_LPAREN, + ACTIONS(4108), 1, + aux_sym_preproc_include_token2, + ACTIONS(4110), 1, + sym_preproc_arg, + STATE(1685), 1, + sym_preproc_params, + [58200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 1, + ACTIONS(4112), 1, anon_sym___except, - ACTIONS(4131), 1, + ACTIONS(4114), 1, anon_sym___finally, - STATE(161), 2, + STATE(76), 2, sym_seh_except_clause, sym_seh_finally_clause, - [58654] = 4, + [58214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COMMA, - STATE(1483), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4136), 2, - anon_sym_SEMI, + ACTIONS(3398), 1, anon_sym___attribute__, - [58668] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3612), 1, - anon_sym_COMMA, - STATE(1464), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4138), 2, + ACTIONS(4116), 1, anon_sym_SEMI, - anon_sym___attribute__, - [58682] = 4, + STATE(1381), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4096), 1, + ACTIONS(4118), 1, anon_sym_COMMA, - STATE(1472), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4140), 2, + ACTIONS(4120), 1, anon_sym_RPAREN, - anon_sym_COLON, - [58696] = 5, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_LPAREN, - ACTIONS(4142), 1, - aux_sym_preproc_include_token2, - ACTIONS(4144), 1, - sym_preproc_arg, - STATE(1661), 1, - sym_preproc_params, - [58712] = 4, - ACTIONS(3), 1, + STATE(1565), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(1630), 1, + aux_sym_parameter_list_repeat1, + [58244] = 5, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym___attribute__, - ACTIONS(4146), 1, - anon_sym_SEMI, - STATE(1507), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58726] = 4, + ACTIONS(4122), 1, + anon_sym_DQUOTE, + ACTIONS(4124), 1, + aux_sym_string_literal_token1, + ACTIONS(4126), 1, + sym_escape_sequence, + STATE(1511), 1, + aux_sym_string_literal_repeat1, + [58260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym___attribute__, - ACTIONS(4148), 1, + ACTIONS(4128), 4, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1500), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58740] = 4, - ACTIONS(3), 1, + anon_sym_asm, + anon_sym___asm__, + [58270] = 5, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4150), 1, - anon_sym___except, - ACTIONS(4152), 1, - anon_sym___finally, - STATE(90), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [58754] = 4, + ACTIONS(4130), 1, + anon_sym_DQUOTE, + ACTIONS(4132), 1, + aux_sym_string_literal_token1, + ACTIONS(4134), 1, + sym_escape_sequence, + STATE(1507), 1, + aux_sym_string_literal_repeat1, + [58286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(4136), 1, anon_sym_COMMA, - STATE(1483), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4154), 2, + STATE(1487), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4139), 2, anon_sym_SEMI, anon_sym___attribute__, - [58768] = 4, + [58300] = 5, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4063), 1, + anon_sym_LPAREN, + ACTIONS(4141), 1, + aux_sym_preproc_include_token2, + ACTIONS(4143), 1, + sym_preproc_arg, + STATE(1695), 1, + sym_preproc_params, + [58316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4145), 1, anon_sym___except, - ACTIONS(4158), 1, + ACTIONS(4147), 1, anon_sym___finally, - STATE(223), 2, + STATE(226), 2, sym_seh_except_clause, sym_seh_finally_clause, - [58782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - sym_identifier, - ACTIONS(4160), 1, - aux_sym_preproc_if_token2, - STATE(1369), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [58796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3502), 1, - anon_sym___attribute__, - ACTIONS(4162), 1, - anon_sym_SEMI, - STATE(1389), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58810] = 4, + [58330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4043), 1, anon_sym_COMMA, - STATE(1461), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4164), 2, + STATE(1458), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4149), 2, anon_sym_RPAREN, anon_sym_COLON, - [58824] = 4, + [58344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - ACTIONS(4166), 1, + ACTIONS(4151), 1, anon_sym_SEMI, - STATE(1389), 2, + STATE(1477), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58838] = 4, + [58358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - ACTIONS(4168), 1, + ACTIONS(4153), 1, anon_sym_SEMI, - STATE(1518), 2, + STATE(1381), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58852] = 5, + [58372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3527), 1, sym_identifier, - ACTIONS(4011), 1, + ACTIONS(4155), 1, aux_sym_preproc_if_token2, - STATE(1467), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1732), 1, + STATE(1469), 2, sym_enumerator, - [58868] = 2, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [58386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4170), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [58878] = 4, + ACTIONS(4157), 1, + anon_sym_COMMA, + STATE(1494), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4160), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58400] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4047), 1, + anon_sym_COMMA, + STATE(1517), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4162), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 1, + anon_sym_COMMA, + STATE(1519), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4166), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58428] = 5, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4063), 1, + anon_sym_LPAREN, + ACTIONS(4168), 1, + aux_sym_preproc_include_token2, + ACTIONS(4170), 1, + sym_preproc_arg, + STATE(1652), 1, + sym_preproc_params, + [58444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, ACTIONS(4172), 1, anon_sym_SEMI, - STATE(1502), 2, + STATE(1467), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [58892] = 4, - ACTIONS(3), 1, + [58458] = 5, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym___attribute__, ACTIONS(4174), 1, - anon_sym_SEMI, - STATE(1389), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58906] = 4, + anon_sym_DQUOTE, + ACTIONS(4176), 1, + aux_sym_string_literal_token1, + ACTIONS(4178), 1, + sym_escape_sequence, + STATE(1484), 1, + aux_sym_string_literal_repeat1, + [58474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(4176), 1, + ACTIONS(4027), 1, aux_sym_preproc_if_token2, - STATE(1492), 2, + STATE(1468), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1737), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [58920] = 4, + [58490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym___attribute__, - ACTIONS(4178), 1, - anon_sym_SEMI, - STATE(1389), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58934] = 4, - ACTIONS(3), 1, + ACTIONS(4180), 1, + anon_sym___except, + ACTIONS(4182), 1, + anon_sym___finally, + STATE(226), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [58504] = 5, + ACTIONS(3336), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - STATE(1684), 1, - sym_argument_list, - ACTIONS(4180), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [58948] = 5, - ACTIONS(3323), 1, + ACTIONS(4184), 1, + anon_sym_DQUOTE, + ACTIONS(4186), 1, + aux_sym_string_literal_token1, + ACTIONS(4188), 1, + sym_escape_sequence, + STATE(1506), 1, + aux_sym_string_literal_repeat1, + [58520] = 4, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(4190), 1, + anon_sym_SQUOTE, + STATE(1509), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4094), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58534] = 5, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4063), 1, anon_sym_LPAREN, - ACTIONS(4182), 1, + ACTIONS(4192), 1, aux_sym_preproc_include_token2, - ACTIONS(4184), 1, + ACTIONS(4194), 1, sym_preproc_arg, - STATE(1711), 1, + STATE(1706), 1, sym_preproc_params, - [58964] = 4, - ACTIONS(3323), 1, + [58550] = 4, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4196), 1, anon_sym_SQUOTE, - STATE(1505), 1, + STATE(1509), 1, aux_sym_char_literal_repeat1, - ACTIONS(4188), 2, + ACTIONS(4094), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [58978] = 4, - ACTIONS(3), 1, + [58564] = 5, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym___attribute__, - ACTIONS(4191), 1, - anon_sym_SEMI, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [58992] = 4, - ACTIONS(3), 1, + ACTIONS(4124), 1, + aux_sym_string_literal_token1, + ACTIONS(4126), 1, + sym_escape_sequence, + ACTIONS(4198), 1, + anon_sym_DQUOTE, + STATE(1511), 1, + aux_sym_string_literal_repeat1, + [58580] = 5, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym___attribute__, - ACTIONS(4193), 1, - anon_sym_SEMI, - STATE(1389), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [59006] = 5, + ACTIONS(4124), 1, + aux_sym_string_literal_token1, + ACTIONS(4126), 1, + sym_escape_sequence, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + STATE(1511), 1, + aux_sym_string_literal_repeat1, + [58596] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3580), 1, anon_sym_LPAREN2, - ACTIONS(3922), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(4195), 1, + ACTIONS(4202), 1, anon_sym_RPAREN, - STATE(1454), 1, + STATE(1444), 1, sym_parameter_list, - [59022] = 4, - ACTIONS(3323), 1, + [58612] = 4, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4197), 1, + ACTIONS(4204), 1, anon_sym_SQUOTE, - STATE(1505), 1, + STATE(1509), 1, aux_sym_char_literal_repeat1, - ACTIONS(4115), 2, + ACTIONS(4206), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [59036] = 5, - ACTIONS(3323), 1, + [58626] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3608), 1, + anon_sym_COMMA, + STATE(1513), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4209), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58640] = 5, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym_DQUOTE, + ACTIONS(4213), 1, aux_sym_string_literal_token1, - ACTIONS(4082), 1, + ACTIONS(4216), 1, sym_escape_sequence, - ACTIONS(4199), 1, - anon_sym_DQUOTE, - STATE(1517), 1, + STATE(1511), 1, aux_sym_string_literal_repeat1, - [59052] = 5, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_LPAREN, - ACTIONS(4201), 1, - aux_sym_preproc_include_token2, - ACTIONS(4203), 1, - sym_preproc_arg, - STATE(1690), 1, - sym_preproc_params, - [59068] = 4, - ACTIONS(3323), 1, + [58656] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 1, - anon_sym_SQUOTE, - STATE(1505), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4115), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [59082] = 4, + ACTIONS(3398), 1, + anon_sym___attribute__, + ACTIONS(4219), 1, + anon_sym_SEMI, + STATE(1482), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 1, + ACTIONS(3608), 1, anon_sym_COMMA, - STATE(1513), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4210), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [59096] = 5, - ACTIONS(3323), 1, + STATE(1516), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4221), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58684] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, - anon_sym_LPAREN, - ACTIONS(4212), 1, - aux_sym_preproc_include_token2, - ACTIONS(4214), 1, - sym_preproc_arg, - STATE(1648), 1, - sym_preproc_params, - [59112] = 4, + ACTIONS(3398), 1, + anon_sym___attribute__, + ACTIONS(4223), 1, + anon_sym_SEMI, + STATE(1460), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [58698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(3608), 1, anon_sym_COMMA, - STATE(1474), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4216), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [59126] = 5, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_LPAREN, - ACTIONS(4218), 1, - aux_sym_preproc_include_token2, - ACTIONS(4220), 1, - sym_preproc_arg, - STATE(1652), 1, - sym_preproc_params, - [59142] = 5, - ACTIONS(3323), 1, + STATE(1516), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4225), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58712] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4222), 1, - anon_sym_DQUOTE, - ACTIONS(4224), 1, - aux_sym_string_literal_token1, ACTIONS(4227), 1, - sym_escape_sequence, + anon_sym_COMMA, + STATE(1516), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4230), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [58726] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4232), 1, + anon_sym_COMMA, STATE(1517), 1, - aux_sym_string_literal_repeat1, - [59158] = 4, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4235), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - ACTIONS(4230), 1, + ACTIONS(4237), 1, anon_sym_SEMI, - STATE(1389), 2, + STATE(1492), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [59172] = 5, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4232), 1, - anon_sym_DQUOTE, - ACTIONS(4234), 1, - aux_sym_string_literal_token1, - ACTIONS(4236), 1, - sym_escape_sequence, - STATE(1510), 1, - aux_sym_string_literal_repeat1, - [59188] = 4, + [58754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 1, + ACTIONS(4164), 1, anon_sym_COMMA, - STATE(1520), 1, - aux_sym__type_definition_declarators_repeat1, + STATE(1465), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4239), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [58768] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN2, + STATE(1698), 1, + sym_argument_list, ACTIONS(4241), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [59202] = 3, - ACTIONS(3323), 1, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [58782] = 2, + ACTIONS(3), 1, sym_comment, - STATE(1476), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4243), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [59213] = 2, + ACTIONS(4243), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [58791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4245), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [59222] = 4, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(4245), 1, + anon_sym_SEMI, + STATE(1566), 1, + aux_sym_declaration_repeat1, + [58804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(4247), 1, - anon_sym_RPAREN, - STATE(1619), 1, - aux_sym_preproc_argument_list_repeat1, - [59235] = 3, - ACTIONS(3323), 1, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [58817] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1512), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4249), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [59246] = 4, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(4249), 1, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [58830] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3924), 1, + anon_sym_COMMA, ACTIONS(4251), 1, - anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [58843] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(4255), 1, + anon_sym_RBRACK_RBRACK, + STATE(1570), 1, + aux_sym_attribute_declaration_repeat1, + [58856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3047), 3, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - STATE(1546), 1, - sym_gnu_asm_output_operand_list, - [59259] = 4, + [58865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 1, - anon_sym_LBRACE, - ACTIONS(4255), 1, - sym_identifier, - STATE(1083), 1, - sym_enumerator_list, - [59272] = 4, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(4257), 1, + anon_sym_SEMI, + STATE(1532), 1, + aux_sym_declaration_repeat1, + [58878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(4259), 1, - anon_sym_RPAREN, - STATE(1632), 1, - aux_sym_preproc_params_repeat1, - [59285] = 4, + anon_sym_SEMI, + STATE(1563), 1, + aux_sym_declaration_repeat1, + [58891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 1, - anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_COMMA, ACTIONS(4261), 1, - sym_identifier, - STATE(1083), 1, - sym_enumerator_list, - [59298] = 4, - ACTIONS(3323), 1, + anon_sym_SEMI, + STATE(1535), 1, + aux_sym_declaration_repeat1, + [58904] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(3924), 1, + anon_sym_COMMA, ACTIONS(4263), 1, - aux_sym_preproc_include_token2, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [58917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3924), 1, + anon_sym_COMMA, ACTIONS(4265), 1, - anon_sym_LPAREN2, - STATE(1959), 1, - sym_preproc_argument_list, - [59311] = 4, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [58930] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3924), 1, + anon_sym_COMMA, ACTIONS(4267), 1, + anon_sym_SEMI, + STATE(1536), 1, + aux_sym_declaration_repeat1, + [58943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(4269), 1, - anon_sym_RPAREN, - STATE(1605), 1, - aux_sym__old_style_parameter_list_repeat1, - [59324] = 4, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [58956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4273), 1, - anon_sym_RBRACK_RBRACK, - STATE(1540), 1, - aux_sym_attribute_declaration_repeat1, - [59337] = 4, + ACTIONS(4271), 1, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [58969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - anon_sym_RBRACE, - ACTIONS(4275), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - STATE(1532), 1, - aux_sym_initializer_list_repeat1, - [59350] = 4, + ACTIONS(4273), 1, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [58982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4278), 1, + ACTIONS(4275), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4280), 1, anon_sym_COLON, - STATE(1588), 1, - sym_gnu_asm_input_operand_list, - [59363] = 4, - ACTIONS(3323), 1, + [58991] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4265), 1, - anon_sym_LPAREN2, - ACTIONS(4282), 1, - aux_sym_preproc_include_token2, - STATE(1959), 1, - sym_preproc_argument_list, - [59376] = 4, + ACTIONS(4277), 1, + anon_sym_COMMA, + ACTIONS(4279), 1, + anon_sym_RPAREN, + STATE(1630), 1, + aux_sym_parameter_list_repeat1, + [59004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4284), 1, - anon_sym_RBRACK_RBRACK, - STATE(1554), 1, - aux_sym_attribute_declaration_repeat1, - [59389] = 4, + ACTIONS(4281), 1, + anon_sym_SEMI, + STATE(1543), 1, + aux_sym_declaration_repeat1, + [59017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4286), 1, + ACTIONS(3083), 1, anon_sym_COMMA, - ACTIONS(4288), 1, + ACTIONS(3085), 1, anon_sym_RPAREN, - STATE(1624), 1, - aux_sym_parameter_list_repeat1, - [59402] = 4, + STATE(1633), 1, + aux_sym_argument_list_repeat1, + [59030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 1, - anon_sym_LBRACE, - ACTIONS(4290), 1, - sym_identifier, - STATE(718), 1, - sym_field_declaration_list, - [59415] = 4, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(4283), 1, + anon_sym_SEMI, + STATE(1546), 1, + aux_sym_declaration_repeat1, + [59043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4292), 1, + ACTIONS(4285), 1, anon_sym_SEMI, - STATE(1544), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59428] = 4, + [59056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4294), 1, - anon_sym_RBRACK_RBRACK, - STATE(1571), 1, - aux_sym_attribute_declaration_repeat1, - [59441] = 4, + ACTIONS(4287), 1, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [59069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4296), 1, - anon_sym_RBRACK_RBRACK, - STATE(1554), 1, - aux_sym_attribute_declaration_repeat1, - [59454] = 4, + ACTIONS(4289), 1, + anon_sym_SEMI, + STATE(1547), 1, + aux_sym_declaration_repeat1, + [59082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, - anon_sym_RPAREN, - ACTIONS(4300), 1, - anon_sym_COLON, - STATE(1587), 1, - sym_gnu_asm_clobber_list, - [59467] = 4, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(4291), 1, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [59095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4302), 1, + ACTIONS(4293), 1, anon_sym_SEMI, - STATE(1553), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59480] = 4, + [59108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4304), 1, + ACTIONS(4295), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59493] = 4, + [59121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4297), 1, + anon_sym_RPAREN, + ACTIONS(4299), 1, + anon_sym_COLON, + STATE(1571), 1, + sym_gnu_asm_output_operand_list, + [59134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4306), 1, + ACTIONS(4301), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59506] = 2, + [59147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 3, + ACTIONS(3288), 1, anon_sym_COMMA, + ACTIONS(4303), 1, anon_sym_RPAREN, - anon_sym_COLON, - [59515] = 4, + STATE(1584), 1, + aux_sym_preproc_argument_list_repeat1, + [59160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, - anon_sym_COLON, - ACTIONS(4310), 1, + ACTIONS(3083), 1, + anon_sym_COMMA, + ACTIONS(3093), 1, anon_sym_RPAREN, - STATE(1541), 1, - sym_gnu_asm_input_operand_list, - [59528] = 4, + STATE(1540), 1, + aux_sym_argument_list_repeat1, + [59173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_COLON, - ACTIONS(4312), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_gnu_asm_output_operand_list, - [59541] = 4, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4305), 1, + sym_identifier, + STATE(724), 1, + sym_field_declaration_list, + [59186] = 3, + ACTIONS(3336), 1, + sym_comment, + STATE(1503), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4307), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(4309), 3, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym___attribute__, + [59206] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4311), 1, + anon_sym_COMMA, ACTIONS(4314), 1, - anon_sym_SEMI, - STATE(1802), 1, - sym_attribute_specifier, - [59554] = 4, + anon_sym_RPAREN, + STATE(1555), 1, + aux_sym__old_style_parameter_list_repeat1, + [59219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(4316), 1, anon_sym_SEMI, - STATE(1581), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59567] = 4, + [59232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(4318), 1, anon_sym_SEMI, - STATE(1627), 1, + STATE(1580), 1, aux_sym_declaration_repeat1, - [59580] = 4, + [59245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4320), 1, - anon_sym_SEMI, - STATE(1557), 1, - aux_sym_declaration_repeat1, - [59593] = 4, + ACTIONS(4320), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [59254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(4322), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59606] = 4, + [59267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3083), 1, anon_sym_COMMA, ACTIONS(4324), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [59619] = 4, + anon_sym_RPAREN, + STATE(1633), 1, + aux_sym_argument_list_repeat1, + [59280] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4326), 1, - anon_sym_COMMA, - ACTIONS(4329), 1, - anon_sym_RBRACK_RBRACK, - STATE(1554), 1, - aux_sym_attribute_declaration_repeat1, - [59632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4331), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [59645] = 4, + anon_sym_RPAREN, + ACTIONS(4328), 1, + anon_sym_COLON, + STATE(1607), 1, + sym_gnu_asm_clobber_list, + [59293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(4330), 1, anon_sym_COMMA, ACTIONS(4333), 1, anon_sym_RPAREN, - STATE(1619), 1, - aux_sym_preproc_argument_list_repeat1, - [59658] = 4, + STATE(1562), 1, + aux_sym_preproc_params_repeat1, + [59306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(4335), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59671] = 2, + [59319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4337), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [59680] = 2, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(4337), 1, + sym_identifier, + STATE(1055), 1, + sym_enumerator_list, + [59332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4339), 3, + ACTIONS(4339), 1, anon_sym_COMMA, + ACTIONS(4341), 1, anon_sym_RPAREN, - anon_sym_COLON, - [59689] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 1, - anon_sym_COMMA, - ACTIONS(3079), 1, - anon_sym_RBRACE, - STATE(1567), 1, - aux_sym_initializer_list_repeat1, - [59702] = 4, + STATE(1555), 1, + aux_sym__old_style_parameter_list_repeat1, + [59345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4341), 1, + ACTIONS(3924), 1, anon_sym_COMMA, ACTIONS(4343), 1, - anon_sym_RPAREN, - STATE(1614), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [59715] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3502), 1, - anon_sym___attribute__, - ACTIONS(4345), 1, anon_sym_SEMI, - STATE(1892), 1, - sym_attribute_specifier, - [59728] = 4, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [59358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(4253), 1, anon_sym_COMMA, - ACTIONS(4347), 1, + ACTIONS(4345), 1, anon_sym_RBRACK_RBRACK, - STATE(1535), 1, + STATE(1570), 1, aux_sym_attribute_declaration_repeat1, - [59741] = 4, + [59371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4349), 1, + ACTIONS(4347), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1583), 1, aux_sym_declaration_repeat1, - [59754] = 4, + [59384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4351), 1, + ACTIONS(3398), 1, + anon_sym___attribute__, + ACTIONS(4349), 1, anon_sym_SEMI, - STATE(1606), 1, - aux_sym_declaration_repeat1, - [59767] = 4, + STATE(1926), 1, + sym_attribute_specifier, + [59397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4351), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [59780] = 4, + ACTIONS(4354), 1, + anon_sym_RBRACK_RBRACK, + STATE(1570), 1, + aux_sym_attribute_declaration_repeat1, + [59410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, - anon_sym_RBRACE, - ACTIONS(4355), 1, - anon_sym_COMMA, - STATE(1532), 1, - aux_sym_initializer_list_repeat1, - [59793] = 4, - ACTIONS(3323), 1, + ACTIONS(4356), 1, + anon_sym_RPAREN, + ACTIONS(4358), 1, + anon_sym_COLON, + STATE(1561), 1, + sym_gnu_asm_input_operand_list, + [59423] = 4, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4265), 1, - anon_sym_LPAREN2, - ACTIONS(4357), 1, + ACTIONS(4360), 1, aux_sym_preproc_include_token2, - STATE(1959), 1, + ACTIONS(4362), 1, + anon_sym_LPAREN2, + STATE(1965), 1, sym_preproc_argument_list, - [59806] = 2, + [59436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 3, + ACTIONS(1911), 1, + anon_sym_RBRACE, + ACTIONS(4364), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [59815] = 4, + STATE(1602), 1, + aux_sym_initializer_list_repeat1, + [59449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, + ACTIONS(4366), 3, anon_sym_COMMA, - ACTIONS(3067), 1, anon_sym_RPAREN, - STATE(1640), 1, - aux_sym_argument_list_repeat1, - [59828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4271), 1, - anon_sym_COMMA, - ACTIONS(4361), 1, - anon_sym_RBRACK_RBRACK, - STATE(1554), 1, - aux_sym_attribute_declaration_repeat1, - [59841] = 4, + anon_sym_COLON, + [59458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4363), 1, + ACTIONS(4368), 1, anon_sym_SEMI, - STATE(1577), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 1, - anon_sym_RPAREN, - ACTIONS(4365), 1, - anon_sym_COMMA, - STATE(1573), 1, - aux_sym_argument_list_repeat1, - [59867] = 4, + [59471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4368), 1, + ACTIONS(4370), 1, anon_sym_SEMI, - STATE(1584), 1, + STATE(1611), 1, aux_sym_declaration_repeat1, - [59880] = 4, + [59484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4370), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59893] = 4, - ACTIONS(3323), 1, + [59497] = 4, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4265), 1, + ACTIONS(4362), 1, anon_sym_LPAREN2, - ACTIONS(4372), 1, + ACTIONS(4374), 1, + aux_sym_preproc_include_token2, + STATE(1965), 1, + sym_preproc_argument_list, + [59510] = 4, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_LPAREN2, + ACTIONS(4376), 1, aux_sym_preproc_include_token2, - STATE(1959), 1, + STATE(1965), 1, sym_preproc_argument_list, - [59906] = 4, + [59523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59919] = 3, + [59536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 1, - anon_sym_EQ, - ACTIONS(3800), 2, + ACTIONS(3083), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [59930] = 4, + ACTIONS(3091), 1, + anon_sym_RPAREN, + STATE(1605), 1, + aux_sym_argument_list_repeat1, + [59549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4380), 3, anon_sym_COMMA, - ACTIONS(4378), 1, - anon_sym_SEMI, - STATE(1618), 1, - aux_sym_declaration_repeat1, - [59943] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [59558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4380), 1, + ACTIONS(4382), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59956] = 4, + [59571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3423), 1, + anon_sym_RPAREN, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(4382), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [59969] = 4, + STATE(1584), 1, + aux_sym_preproc_argument_list_repeat1, + [59584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4387), 1, anon_sym_COMMA, - ACTIONS(4384), 1, - anon_sym_SEMI, - STATE(1586), 1, - aux_sym_declaration_repeat1, - [59982] = 4, + ACTIONS(4390), 1, + anon_sym_RPAREN, + STATE(1585), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [59597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4392), 1, anon_sym_COMMA, - ACTIONS(4386), 1, + ACTIONS(4395), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [59995] = 4, + [59610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4388), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60008] = 4, + ACTIONS(4358), 1, + anon_sym_COLON, + ACTIONS(4397), 1, + anon_sym_RPAREN, + STATE(1618), 1, + sym_gnu_asm_input_operand_list, + [59623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, + ACTIONS(3083), 1, anon_sym_COMMA, - ACTIONS(3073), 1, + ACTIONS(4399), 1, anon_sym_RPAREN, - STATE(1621), 1, + STATE(1633), 1, aux_sym_argument_list_repeat1, - [60021] = 4, + [59636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4390), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60034] = 4, + ACTIONS(4401), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [59645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4403), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4394), 1, anon_sym_COLON, - STATE(1832), 1, - sym_gnu_asm_goto_list, - [60047] = 4, + [59654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 1, - anon_sym_COLON, - ACTIONS(4396), 1, + ACTIONS(3288), 1, + anon_sym_COMMA, + ACTIONS(4405), 1, anon_sym_RPAREN, - STATE(1611), 1, - sym_gnu_asm_clobber_list, - [60060] = 4, + STATE(1584), 1, + aux_sym_preproc_argument_list_repeat1, + [59667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4398), 1, - anon_sym_SEMI, - STATE(1592), 1, - aux_sym_declaration_repeat1, - [60073] = 4, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(4407), 1, + sym_identifier, + STATE(844), 1, + sym_enumerator_list, + [59680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4400), 1, - anon_sym_SEMI, - STATE(1595), 1, - aux_sym_declaration_repeat1, - [60086] = 4, + ACTIONS(4409), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [59689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4402), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60099] = 4, + ACTIONS(4411), 1, + anon_sym_RPAREN, + ACTIONS(4413), 1, + anon_sym_COLON, + STATE(1738), 1, + sym_gnu_asm_goto_list, + [59702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4415), 1, anon_sym_COMMA, - ACTIONS(4404), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60112] = 4, - ACTIONS(3), 1, + ACTIONS(4417), 1, + anon_sym_RPAREN, + STATE(1626), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [59715] = 3, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4406), 1, - anon_sym_SEMI, - STATE(1596), 1, - aux_sym_declaration_repeat1, - [60125] = 4, + STATE(1505), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4419), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [59726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4421), 1, anon_sym_COMMA, - ACTIONS(4408), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60138] = 4, + ACTIONS(4424), 1, + anon_sym_RPAREN, + STATE(1597), 1, + aux_sym_generic_expression_repeat1, + [59739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4253), 1, anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60151] = 4, + ACTIONS(4426), 1, + anon_sym_RBRACK_RBRACK, + STATE(1567), 1, + aux_sym_attribute_declaration_repeat1, + [59752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4428), 3, anon_sym_COMMA, - ACTIONS(4412), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60164] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [59761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4430), 1, anon_sym_COMMA, - ACTIONS(4414), 1, - anon_sym_SEMI, + ACTIONS(4433), 1, + anon_sym_RPAREN, STATE(1600), 1, - aux_sym_declaration_repeat1, - [60177] = 4, + aux_sym_parameter_list_repeat1, + [59774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4416), 1, - anon_sym_SEMI, - STATE(1603), 1, - aux_sym_declaration_repeat1, - [60190] = 4, + ACTIONS(4437), 1, + anon_sym_RPAREN, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [59785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3171), 1, + anon_sym_RBRACE, + ACTIONS(4439), 1, anon_sym_COMMA, - ACTIONS(4418), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60203] = 4, + STATE(1602), 1, + aux_sym_initializer_list_repeat1, + [59798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(4442), 1, + anon_sym_EQ, + ACTIONS(3809), 2, anon_sym_COMMA, - ACTIONS(4420), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60216] = 4, + anon_sym_RBRACE, + [59809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4422), 1, + ACTIONS(4444), 1, anon_sym_SEMI, - STATE(1604), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [60229] = 4, + [59822] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3083), 1, anon_sym_COMMA, - ACTIONS(4424), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60242] = 4, + ACTIONS(3089), 1, + anon_sym_RPAREN, + STATE(1633), 1, + aux_sym_argument_list_repeat1, + [59835] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2766), 1, + anon_sym_LBRACE, + ACTIONS(4446), 1, + sym_identifier, + STATE(1055), 1, + sym_enumerator_list, + [59848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_RPAREN, + STATE(1872), 1, + sym_gnu_asm_goto_list, + [59861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4426), 1, + ACTIONS(4450), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [60255] = 4, + [59874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4428), 1, + ACTIONS(4452), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1523), 1, aux_sym_declaration_repeat1, - [60268] = 4, - ACTIONS(3), 1, + [59887] = 4, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4430), 1, - anon_sym_COMMA, - ACTIONS(4433), 1, - anon_sym_RPAREN, - STATE(1605), 1, - aux_sym__old_style_parameter_list_repeat1, - [60281] = 4, + ACTIONS(4362), 1, + anon_sym_LPAREN2, + ACTIONS(4454), 1, + aux_sym_preproc_include_token2, + STATE(1965), 1, + sym_preproc_argument_list, + [59900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4435), 1, + ACTIONS(4456), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [60294] = 3, - ACTIONS(3323), 1, - sym_comment, - STATE(1509), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4437), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [60305] = 2, + [59913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 3, + ACTIONS(3288), 1, anon_sym_COMMA, + ACTIONS(4458), 1, anon_sym_RPAREN, - anon_sym_COLON, - [60314] = 4, + STATE(1584), 1, + aux_sym_preproc_argument_list_repeat1, + [59926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 1, - anon_sym_LBRACE, - ACTIONS(4441), 1, - sym_identifier, - STATE(852), 1, - sym_enumerator_list, - [60327] = 4, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(4460), 1, + anon_sym_RBRACK_RBRACK, + STATE(1639), 1, + aux_sym_attribute_declaration_repeat1, + [59939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 1, - anon_sym_LBRACE, - ACTIONS(4443), 1, - sym_identifier, - STATE(731), 1, - sym_field_declaration_list, - [60340] = 4, + ACTIONS(4462), 1, + anon_sym_COMMA, + ACTIONS(4464), 1, + anon_sym_RPAREN, + STATE(1616), 1, + aux_sym_preproc_params_repeat1, + [59952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, - anon_sym_COLON, - ACTIONS(4445), 1, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(4466), 1, + anon_sym_RBRACK_RBRACK, + STATE(1526), 1, + aux_sym_attribute_declaration_repeat1, + [59965] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4462), 1, + anon_sym_COMMA, + ACTIONS(4468), 1, anon_sym_RPAREN, - STATE(1962), 1, - sym_gnu_asm_goto_list, - [60353] = 4, + STATE(1562), 1, + aux_sym_preproc_params_repeat1, + [59978] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3398), 1, anon_sym___attribute__, - ACTIONS(4447), 1, + ACTIONS(4470), 1, anon_sym_SEMI, - STATE(1903), 1, + STATE(1881), 1, sym_attribute_specifier, - [60366] = 4, + [59991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(4449), 1, + ACTIONS(4328), 1, + anon_sym_COLON, + ACTIONS(4472), 1, anon_sym_RPAREN, - STATE(1527), 1, - aux_sym_preproc_params_repeat1, - [60379] = 4, + STATE(1594), 1, + sym_gnu_asm_clobber_list, + [60004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4454), 1, - anon_sym_RPAREN, - STATE(1614), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [60392] = 4, + ACTIONS(4474), 1, + anon_sym_SEMI, + STATE(1640), 1, + aux_sym_declaration_repeat1, + [60017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4456), 1, + ACTIONS(4476), 1, anon_sym_SEMI, - STATE(1625), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [60405] = 4, + [60030] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2412), 1, anon_sym_LBRACE, - ACTIONS(4458), 1, + ACTIONS(4478), 1, sym_identifier, - STATE(722), 1, + STATE(717), 1, sym_field_declaration_list, - [60418] = 4, + [60043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4460), 1, + ACTIONS(4480), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1608), 1, aux_sym_declaration_repeat1, - [60431] = 4, + [60056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4462), 1, + ACTIONS(4482), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [60444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_RPAREN, - ACTIONS(4464), 1, - anon_sym_COMMA, - STATE(1619), 1, - aux_sym_preproc_argument_list_repeat1, - [60457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4467), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [60466] = 4, + [60069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, - anon_sym_COMMA, - ACTIONS(3075), 1, - anon_sym_RPAREN, - STATE(1573), 1, - aux_sym_argument_list_repeat1, - [60479] = 4, + ACTIONS(3398), 1, + anon_sym___attribute__, + ACTIONS(4484), 1, + anon_sym_SEMI, + STATE(1973), 1, + sym_attribute_specifier, + [60082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, + ACTIONS(3079), 1, anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_RPAREN, + ACTIONS(3081), 1, + anon_sym_RBRACE, STATE(1573), 1, - aux_sym_argument_list_repeat1, - [60492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3260), 1, - anon_sym_COMMA, - ACTIONS(4471), 1, - anon_sym_RPAREN, - STATE(1619), 1, - aux_sym_preproc_argument_list_repeat1, - [60505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4473), 1, - anon_sym_COMMA, - ACTIONS(4476), 1, - anon_sym_RPAREN, - STATE(1624), 1, - aux_sym_parameter_list_repeat1, - [60518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3936), 1, - anon_sym_COMMA, - ACTIONS(4478), 1, - anon_sym_SEMI, - STATE(1629), 1, - aux_sym_declaration_repeat1, - [60531] = 4, + aux_sym_initializer_list_repeat1, + [60095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, + ACTIONS(4415), 1, anon_sym_COMMA, - ACTIONS(4480), 1, + ACTIONS(4486), 1, anon_sym_RPAREN, - STATE(1573), 1, - aux_sym_argument_list_repeat1, - [60544] = 4, + STATE(1585), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [60108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4482), 1, + ACTIONS(4488), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1525), 1, aux_sym_declaration_repeat1, - [60557] = 4, + [60121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_COMMA, - ACTIONS(4484), 1, - anon_sym_RPAREN, - STATE(1642), 1, - aux_sym_generic_expression_repeat1, - [60570] = 4, + ACTIONS(1775), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4490), 1, + sym_identifier, + STATE(1654), 1, + sym_variadic_parameter, + [60134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4489), 1, + ACTIONS(4492), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - [60583] = 4, + [60147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4286), 1, + ACTIONS(4277), 1, anon_sym_COMMA, - ACTIONS(4491), 1, + ACTIONS(4494), 1, anon_sym_RPAREN, - STATE(1536), 1, + STATE(1600), 1, aux_sym_parameter_list_repeat1, - [60596] = 2, + [60160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4493), 3, + ACTIONS(3075), 1, anon_sym_COMMA, + ACTIONS(4496), 1, anon_sym_RPAREN, - anon_sym_COLON, - [60605] = 4, + STATE(1597), 1, + aux_sym_generic_expression_repeat1, + [60173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_COLON, ACTIONS(4498), 1, anon_sym_RPAREN, - STATE(1632), 1, - aux_sym_preproc_params_repeat1, - [60618] = 4, + STATE(1587), 1, + sym_gnu_asm_output_operand_list, + [60186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(3187), 1, + anon_sym_RPAREN, ACTIONS(4500), 1, - sym_identifier, - STATE(1727), 1, - sym_variadic_parameter, - [60631] = 2, + anon_sym_COMMA, + STATE(1633), 1, + aux_sym_argument_list_repeat1, + [60199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 3, + ACTIONS(3924), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [60640] = 4, + ACTIONS(4503), 1, + anon_sym_SEMI, + STATE(1556), 1, + aux_sym_declaration_repeat1, + [60212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4341), 1, + ACTIONS(4505), 3, anon_sym_COMMA, - ACTIONS(4504), 1, anon_sym_RPAREN, - STATE(1561), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [60653] = 4, + anon_sym_COLON, + [60221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3936), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4506), 1, + ACTIONS(4507), 1, anon_sym_SEMI, - STATE(1564), 1, + STATE(1524), 1, aux_sym_declaration_repeat1, - [60666] = 2, + [60234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 3, - anon_sym_RPAREN, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(4509), 1, anon_sym_SEMI, - anon_sym_COLON, - [60675] = 2, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [60247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [60684] = 2, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(4511), 1, + sym_identifier, + STATE(727), 1, + sym_field_declaration_list, + [60260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 3, + ACTIONS(4253), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [60693] = 4, + ACTIONS(4513), 1, + anon_sym_RBRACK_RBRACK, + STATE(1570), 1, + aux_sym_attribute_declaration_repeat1, + [60273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(3081), 1, - anon_sym_RPAREN, - STATE(1573), 1, - aux_sym_argument_list_repeat1, - [60706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - anon_sym_RPAREN, - ACTIONS(4512), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [60717] = 4, + ACTIONS(4515), 1, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [60286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4519), 1, - anon_sym_RPAREN, - STATE(1642), 1, - aux_sym_generic_expression_repeat1, - [60730] = 3, + ACTIONS(4517), 1, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_declaration_repeat1, + [60299] = 3, + ACTIONS(3336), 1, + sym_comment, + STATE(1475), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4519), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [60310] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4521), 1, anon_sym_LPAREN2, - STATE(1644), 1, + STATE(366), 1, sym_parenthesized_expression, - [60740] = 3, + [60320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACE, - STATE(82), 1, - sym_compound_statement, - [60750] = 3, + ACTIONS(4521), 1, + anon_sym_LPAREN2, + STATE(335), 1, + sym_parenthesized_expression, + [60330] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4521), 1, anon_sym_LPAREN2, - STATE(1704), 1, + STATE(336), 1, sym_parenthesized_expression, - [60760] = 2, + [60340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [60768] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(183), 1, + sym_compound_statement, + [60350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(235), 1, + sym_compound_statement, + [60360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1501), 1, + sym_compound_statement, + [60370] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4523), 1, sym_identifier, ACTIONS(4525), 1, anon_sym_LPAREN2, - [60778] = 3, - ACTIONS(3323), 1, + [60380] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(4527), 1, - aux_sym_preproc_include_token2, + anon_sym_COMMA, ACTIONS(4529), 1, - sym_preproc_arg, - [60788] = 3, - ACTIONS(3323), 1, + anon_sym_RBRACE, + [60390] = 3, + ACTIONS(3336), 1, sym_comment, ACTIONS(4531), 1, aux_sym_preproc_include_token2, ACTIONS(4533), 1, sym_preproc_arg, - [60798] = 3, - ACTIONS(3323), 1, + [60400] = 3, + ACTIONS(3336), 1, sym_comment, ACTIONS(4535), 1, aux_sym_preproc_include_token2, ACTIONS(4537), 1, sym_preproc_arg, - [60808] = 2, + [60410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(244), 1, + sym_compound_statement, + [60420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 2, + ACTIONS(4314), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60816] = 3, - ACTIONS(3323), 1, + [60428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(582), 1, + anon_sym_LBRACE, + STATE(251), 1, + sym_compound_statement, + [60438] = 3, + ACTIONS(3336), 1, sym_comment, ACTIONS(4539), 1, aux_sym_preproc_include_token2, ACTIONS(4541), 1, sym_preproc_arg, - [60826] = 3, + [60448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(320), 1, - sym_parenthesized_expression, - [60836] = 3, + ACTIONS(4543), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4545), 1, - sym_identifier, - STATE(1539), 1, - sym_attribute, - [60846] = 3, + ACTIONS(3187), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(4521), 1, anon_sym_LPAREN2, - STATE(325), 1, + STATE(340), 1, sym_parenthesized_expression, - [60856] = 3, + [60474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, - anon_sym_LPAREN2, - STATE(1680), 1, - sym_parenthesized_expression, - [60866] = 3, + ACTIONS(4546), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [60482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4545), 1, - sym_identifier, - STATE(1563), 1, - sym_attribute, - [60876] = 3, + ACTIONS(3147), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [60490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, - anon_sym_LPAREN2, - STATE(326), 1, - sym_parenthesized_expression, - [60886] = 3, - ACTIONS(3323), 1, + ACTIONS(376), 1, + anon_sym_LBRACE, + STATE(151), 1, + sym_compound_statement, + [60500] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 1, - aux_sym_preproc_include_token2, - ACTIONS(4549), 1, - sym_preproc_arg, - [60896] = 3, + ACTIONS(3598), 1, + anon_sym_RBRACE, + ACTIONS(4527), 1, + anon_sym_COMMA, + [60510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - STATE(1491), 1, + STATE(102), 1, sym_compound_statement, - [60906] = 3, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4551), 1, - aux_sym_preproc_include_token2, - ACTIONS(4553), 1, - sym_preproc_arg, - [60916] = 2, + [60520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4555), 2, + ACTIONS(4025), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [60924] = 3, + anon_sym_SEMI, + [60528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(131), 1, anon_sym_LBRACE, - STATE(1482), 1, + STATE(110), 1, sym_compound_statement, - [60934] = 2, + [60538] = 3, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4548), 1, + aux_sym_preproc_include_token2, + ACTIONS(4550), 1, + sym_preproc_arg, + [60548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 2, + ACTIONS(4552), 2, anon_sym_COMMA, - anon_sym_SEMI, - [60942] = 3, + anon_sym_RPAREN, + [60556] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4554), 1, + anon_sym_LPAREN2, + STATE(1720), 1, + sym_parenthesized_expression, + [60566] = 3, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4556), 1, + aux_sym_preproc_include_token2, ACTIONS(4558), 1, - sym_identifier, - ACTIONS(4560), 1, + sym_preproc_arg, + [60576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [60952] = 3, + [60584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(181), 1, + STATE(209), 1, sym_compound_statement, - [60962] = 3, + [60594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, - anon_sym_RBRACE, - ACTIONS(4562), 1, + ACTIONS(3169), 2, anon_sym_COMMA, - [60972] = 3, + anon_sym_RBRACE, + [60602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(233), 1, + STATE(214), 1, sym_compound_statement, - [60982] = 3, - ACTIONS(3), 1, + [60612] = 3, + ACTIONS(3336), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - STATE(1902), 1, - sym_argument_list, - [60992] = 3, + ACTIONS(4560), 1, + aux_sym_preproc_include_token2, + ACTIONS(4562), 1, + sym_preproc_arg, + [60622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, - anon_sym_LPAREN2, - STATE(1853), 1, - sym_parenthesized_expression, - [61002] = 3, - ACTIONS(3323), 1, + ACTIONS(3171), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60630] = 3, + ACTIONS(3336), 1, sym_comment, ACTIONS(4564), 1, aux_sym_preproc_include_token2, ACTIONS(4566), 1, sym_preproc_arg, - [61012] = 3, + [60640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(332), 1, - sym_parenthesized_expression, - [61022] = 3, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4568), 1, - aux_sym_preproc_include_token2, - ACTIONS(4570), 1, - sym_preproc_arg, - [61032] = 3, + STATE(1778), 1, + sym_argument_list, + [60650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(376), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_compound_statement, - [61042] = 3, + ACTIONS(3173), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [60658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, + ACTIONS(4554), 1, anon_sym_LPAREN2, - STATE(1701), 1, + STATE(1762), 1, sym_parenthesized_expression, - [61052] = 3, + [60668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, - anon_sym_LPAREN2, - STATE(1696), 1, - sym_parenthesized_expression, - [61062] = 3, - ACTIONS(3), 1, + ACTIONS(4568), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [60676] = 3, + ACTIONS(3336), 1, sym_comment, + ACTIONS(4570), 1, + aux_sym_preproc_include_token2, ACTIONS(4572), 1, - sym_identifier, - ACTIONS(4574), 1, - anon_sym_LPAREN2, - [61072] = 3, - ACTIONS(3), 1, + sym_preproc_arg, + [60686] = 3, + ACTIONS(3336), 1, sym_comment, - ACTIONS(131), 1, - anon_sym_LBRACE, - STATE(98), 1, - sym_compound_statement, - [61082] = 3, + ACTIONS(4574), 1, + aux_sym_preproc_include_token2, + ACTIONS(4576), 1, + sym_preproc_arg, + [60696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(2356), 1, anon_sym_LPAREN2, - STATE(333), 1, - sym_parenthesized_expression, - [61092] = 3, - ACTIONS(3), 1, + STATE(1773), 1, + sym_argument_list, + [60706] = 3, + ACTIONS(3336), 1, sym_comment, - ACTIONS(376), 1, - anon_sym_LBRACE, - STATE(149), 1, - sym_compound_statement, - [61102] = 3, + ACTIONS(4578), 1, + aux_sym_preproc_include_token2, + ACTIONS(4580), 1, + sym_preproc_arg, + [60716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(4521), 1, anon_sym_LPAREN2, - STATE(349), 1, + STATE(353), 1, sym_parenthesized_expression, - [61112] = 3, + [60726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - STATE(1904), 1, - sym_argument_list, - [61122] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4498), 2, + ACTIONS(4582), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4576), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3167), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [61146] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4578), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [61154] = 3, + [60734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(582), 1, - anon_sym_LBRACE, - STATE(194), 1, - sym_compound_statement, - [61164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - sym_identifier, - STATE(1531), 1, - sym_attribute, - [61174] = 3, + ACTIONS(4521), 1, + anon_sym_LPAREN2, + STATE(346), 1, + sym_parenthesized_expression, + [60744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(4554), 1, anon_sym_LPAREN2, - STATE(340), 1, + STATE(1662), 1, sym_parenthesized_expression, - [61184] = 3, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4580), 1, - aux_sym_preproc_include_token2, - ACTIONS(4582), 1, - sym_preproc_arg, - [61194] = 3, + [60754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(4521), 1, anon_sym_LPAREN2, - STATE(319), 1, + STATE(347), 1, sym_parenthesized_expression, - [61204] = 3, + [60764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(4521), 1, anon_sym_LPAREN2, - STATE(341), 1, + STATE(354), 1, sym_parenthesized_expression, - [61214] = 3, - ACTIONS(3323), 1, + [60774] = 3, + ACTIONS(3336), 1, sym_comment, ACTIONS(4584), 1, aux_sym_preproc_include_token2, ACTIONS(4586), 1, sym_preproc_arg, - [61224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61232] = 3, + [60784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1489), 1, - sym_compound_statement, - [61242] = 3, + ACTIONS(4588), 1, + sym_identifier, + STATE(1713), 1, + sym_attribute, + [60794] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(242), 1, + STATE(1462), 1, sym_compound_statement, - [61252] = 3, - ACTIONS(3323), 1, + [60804] = 3, + ACTIONS(3336), 1, sym_comment, ACTIONS(4590), 1, aux_sym_preproc_include_token2, ACTIONS(4592), 1, sym_preproc_arg, - [61262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4029), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [61270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4521), 1, - anon_sym_LPAREN2, - STATE(1776), 1, - sym_parenthesized_expression, - [61280] = 3, + [60814] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4521), 1, anon_sym_LPAREN2, - STATE(1666), 1, + STATE(341), 1, sym_parenthesized_expression, - [61290] = 3, + [60824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(376), 1, - anon_sym_LBRACE, - STATE(242), 1, - sym_compound_statement, - [61300] = 2, + ACTIONS(4588), 1, + sym_identifier, + STATE(1615), 1, + sym_attribute, + [60834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4329), 2, + ACTIONS(4594), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [61308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4521), 1, - anon_sym_LPAREN2, - STATE(1687), 1, - sym_parenthesized_expression, - [61318] = 3, + [60842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(150), 1, - sym_compound_statement, - [61328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, + ACTIONS(376), 1, anon_sym_LBRACE, - STATE(1478), 1, + STATE(244), 1, sym_compound_statement, - [61338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4594), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61346] = 2, + [60852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4596), 2, anon_sym_DOT_DOT_DOT, sym_identifier, - [61354] = 3, - ACTIONS(3323), 1, + [60860] = 3, + ACTIONS(3336), 1, sym_comment, ACTIONS(4598), 1, aux_sym_preproc_include_token2, ACTIONS(4600), 1, sym_preproc_arg, - [61364] = 3, + [60870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(88), 1, + sym_compound_statement, + [60880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 1, anon_sym_LPAREN2, - STATE(1739), 1, + STATE(1750), 1, sym_parenthesized_expression, - [61374] = 3, + [60890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, + ACTIONS(4554), 1, anon_sym_LPAREN2, - STATE(1730), 1, + STATE(1653), 1, sym_parenthesized_expression, - [61384] = 3, - ACTIONS(3323), 1, + [60900] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(4602), 1, - aux_sym_preproc_include_token2, + sym_identifier, ACTIONS(4604), 1, + anon_sym_RPAREN, + [60910] = 3, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4606), 1, + aux_sym_preproc_include_token2, + ACTIONS(4608), 1, sym_preproc_arg, - [61394] = 3, + [60920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(173), 1, - sym_compound_statement, - [61404] = 3, + ACTIONS(4588), 1, + sym_identifier, + STATE(1613), 1, + sym_attribute, + [60930] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4521), 1, anon_sym_LPAREN2, - STATE(1724), 1, + STATE(365), 1, sym_parenthesized_expression, - [61414] = 2, + [60940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61422] = 3, - ACTIONS(3323), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN2, + STATE(1702), 1, + sym_parenthesized_expression, + [60950] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_preproc_include_token2, ACTIONS(4610), 1, - sym_preproc_arg, - [61432] = 3, - ACTIONS(3323), 1, - sym_comment, + sym_identifier, ACTIONS(4612), 1, - aux_sym_preproc_include_token2, - ACTIONS(4614), 1, - sym_preproc_arg, - [61442] = 3, + anon_sym_LPAREN2, + [60960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(582), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(207), 1, + STATE(1481), 1, sym_compound_statement, - [61452] = 3, + [60970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, + ACTIONS(4554), 1, anon_sym_LPAREN2, - STATE(1867), 1, + STATE(1979), 1, sym_parenthesized_expression, - [61462] = 3, + [60980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(4354), 2, anon_sym_COMMA, - ACTIONS(4616), 1, - anon_sym_RBRACE, - [61472] = 3, + anon_sym_RBRACK_RBRACK, + [60988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 1, + anon_sym_LPAREN2, + STATE(1646), 1, + sym_parenthesized_expression, + [60998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 1, + anon_sym_LPAREN2, + STATE(1655), 1, + sym_parenthesized_expression, + [61008] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1473), 1, + STATE(1472), 1, sym_compound_statement, - [61482] = 2, + [61018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61490] = 2, + ACTIONS(4554), 1, + anon_sym_LPAREN2, + STATE(1699), 1, + sym_parenthesized_expression, + [61028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [61498] = 3, + ACTIONS(376), 1, + anon_sym_LBRACE, + STATE(235), 1, + sym_compound_statement, + [61038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4545), 1, - sym_identifier, - STATE(1702), 1, - sym_attribute, - [61508] = 3, + ACTIONS(4554), 1, + anon_sym_LPAREN2, + STATE(1739), 1, + sym_parenthesized_expression, + [61048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(582), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(212), 1, + STATE(166), 1, sym_compound_statement, - [61518] = 3, + [61058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 1, + anon_sym_LPAREN2, + STATE(1666), 1, + sym_parenthesized_expression, + [61068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4333), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61076] = 3, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4614), 1, + aux_sym_preproc_include_token2, + ACTIONS(4616), 1, + sym_preproc_arg, + [61086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, + ACTIONS(4554), 1, anon_sym_LPAREN2, - STATE(344), 1, + STATE(1674), 1, sym_parenthesized_expression, - [61528] = 3, - ACTIONS(3323), 1, + [61096] = 3, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4618), 1, + aux_sym_preproc_include_token2, + ACTIONS(4620), 1, + sym_preproc_arg, + [61106] = 3, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4618), 1, + ACTIONS(4622), 1, aux_sym_preproc_include_token2, - ACTIONS(4620), 1, + ACTIONS(4624), 1, sym_preproc_arg, - [61538] = 2, + [61116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [61546] = 2, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1489), 1, + sym_compound_statement, + [61126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4037), 2, + ACTIONS(4023), 2, anon_sym_COMMA, anon_sym_SEMI, - [61554] = 3, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4622), 1, - aux_sym_preproc_include_token2, - ACTIONS(4624), 1, - sym_preproc_arg, - [61564] = 3, + [61134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(131), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(107), 1, + STATE(175), 1, sym_compound_statement, - [61574] = 2, + [61144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, - anon_sym_while, - [61581] = 2, + ACTIONS(4588), 1, + sym_identifier, + STATE(1598), 1, + sym_attribute, + [61154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, - anon_sym_COMMA, - [61588] = 2, + ACTIONS(4626), 1, + sym_identifier, + [61161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4628), 1, aux_sym_preproc_if_token2, - [61595] = 2, + [61168] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4630), 1, - anon_sym_RPAREN, - [61602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3586), 1, - anon_sym_RBRACE, - [61609] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 1, - anon_sym_RPAREN, - [61616] = 2, + aux_sym_preproc_if_token2, + [61175] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4632), 1, sym_identifier, - [61623] = 2, + [61182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4634), 1, + aux_sym_preproc_if_token2, + [61189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, anon_sym_RBRACE, - [61630] = 2, + [61196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3874), 1, + anon_sym_COMMA, + [61203] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4636), 1, - anon_sym_SEMI, - [61637] = 2, + anon_sym_RPAREN, + [61210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 1, + ACTIONS(4638), 1, anon_sym_SEMI, - [61644] = 2, + [61217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, + ACTIONS(3107), 1, anon_sym_SEMI, - [61651] = 2, + [61224] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4640), 1, - anon_sym_LPAREN2, - [61658] = 2, + anon_sym_SEMI, + [61231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3101), 1, + anon_sym_SEMI, + [61238] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4642), 1, aux_sym_preproc_if_token2, - [61665] = 2, + [61245] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4644), 1, - anon_sym_RBRACK, - [61672] = 2, + anon_sym_LPAREN2, + [61252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4646), 1, aux_sym_preproc_if_token2, - [61679] = 2, + [61259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3097), 1, + anon_sym_RPAREN, + [61266] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4648), 1, - aux_sym_preproc_if_token2, - [61686] = 2, + anon_sym_RBRACE, + [61273] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4650), 1, - sym_primitive_type, - [61693] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [61280] = 2, + ACTIONS(2175), 1, + aux_sym_preproc_include_token2, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4652), 1, - aux_sym_preproc_if_token2, - [61700] = 2, + [61287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(4652), 1, anon_sym_SEMI, - [61707] = 2, + [61294] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4654), 1, - anon_sym_SEMI, - [61714] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4656), 1, anon_sym_COLON, - [61721] = 2, + [61301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 1, - anon_sym_COLON, - [61728] = 2, + ACTIONS(4656), 1, + anon_sym_LPAREN2, + [61308] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4658), 1, - anon_sym_RBRACE, - [61735] = 2, - ACTIONS(3323), 1, + anon_sym_LPAREN2, + [61315] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4660), 1, aux_sym_preproc_include_token2, - [61742] = 2, + [61322] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4662), 1, - aux_sym_preproc_if_token2, - [61749] = 2, - ACTIONS(3323), 1, + sym_identifier, + [61329] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4664), 1, - aux_sym_preproc_include_token2, - [61756] = 2, + aux_sym_preproc_if_token2, + [61336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4666), 1, - aux_sym_preproc_if_token2, - [61763] = 2, - ACTIONS(3323), 1, + anon_sym_LPAREN2, + [61343] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4668), 1, aux_sym_preproc_include_token2, - [61770] = 2, + [61350] = 2, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4360), 1, + aux_sym_preproc_include_token2, + [61357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4670), 1, anon_sym_RPAREN, - [61777] = 2, + [61364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3179), 1, + anon_sym_SEMI, + [61371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4672), 1, - anon_sym_RPAREN, - [61784] = 2, + anon_sym_SEMI, + [61378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4674), 1, - sym_identifier, - [61791] = 2, + sym_primitive_type, + [61385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4676), 1, - aux_sym_preproc_if_token2, - [61798] = 2, - ACTIONS(3), 1, + sym_identifier, + [61392] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4678), 1, - sym_identifier, - [61805] = 2, - ACTIONS(3323), 1, + aux_sym_preproc_include_token2, + [61399] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4680), 1, - aux_sym_preproc_include_token2, - [61812] = 2, - ACTIONS(3323), 1, + anon_sym_SEMI, + [61406] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4682), 1, - aux_sym_preproc_include_token2, - [61819] = 2, + aux_sym_preproc_if_token2, + [61413] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4684), 1, + anon_sym_LPAREN2, + [61420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3109), 1, anon_sym_SEMI, - [61826] = 2, + [61427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4686), 1, - anon_sym_STAR, - [61833] = 2, + sym_identifier, + [61434] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4688), 1, - anon_sym_RPAREN, - [61840] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 1, - anon_sym_SEMI, - [61847] = 2, + sym_identifier, + [61441] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4690), 1, - anon_sym_SEMI, - [61854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4692), 1, aux_sym_preproc_if_token2, - [61861] = 2, + [61448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 1, - anon_sym_RBRACE, - [61868] = 2, - ACTIONS(3), 1, + ACTIONS(4692), 1, + anon_sym_RPAREN, + [61455] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4694), 1, - aux_sym_preproc_if_token2, - [61875] = 2, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4696), 1, aux_sym_preproc_include_token2, - [61882] = 2, + [61462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, - anon_sym_SEMI, - [61889] = 2, + ACTIONS(4696), 1, + anon_sym_RBRACE, + [61469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, + ACTIONS(3111), 1, anon_sym_SEMI, - [61896] = 2, - ACTIONS(3323), 1, + [61476] = 2, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4702), 1, + ACTIONS(4698), 1, aux_sym_preproc_include_token2, - [61903] = 2, + [61483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_SEMI, - [61910] = 2, + ACTIONS(4700), 1, + anon_sym_STAR, + [61490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, - anon_sym_SEMI, - [61917] = 2, + ACTIONS(4702), 1, + sym_identifier, + [61497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 1, - anon_sym_SEMI, - [61924] = 2, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4282), 1, - aux_sym_preproc_include_token2, - [61931] = 2, - ACTIONS(3059), 1, - aux_sym_preproc_include_token2, - ACTIONS(3323), 1, - sym_comment, - [61938] = 2, - ACTIONS(3323), 1, - sym_comment, ACTIONS(4704), 1, - aux_sym_preproc_include_token2, - [61945] = 2, + sym_identifier, + [61504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4706), 1, - aux_sym_preproc_if_token2, - [61952] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [61511] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4708), 1, - anon_sym_COLON, - [61959] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [61518] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4710), 1, - ts_builtin_sym_end, - [61966] = 2, + aux_sym_preproc_include_token2, + [61525] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4712), 1, aux_sym_preproc_if_token2, - [61973] = 2, + [61532] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4714), 1, - aux_sym_preproc_if_token2, - [61980] = 2, + anon_sym_SEMI, + [61539] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4716), 1, - sym_identifier, - [61987] = 2, - ACTIONS(3323), 1, + aux_sym_preproc_if_token2, + [61546] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4718), 1, - aux_sym_preproc_include_token2, - [61994] = 2, - ACTIONS(3323), 1, + anon_sym_COLON, + [61553] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, - aux_sym_preproc_include_token2, - [62001] = 2, + ACTIONS(3103), 1, + anon_sym_RPAREN, + [61560] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4720), 1, + anon_sym_SEMI, + [61567] = 2, + ACTIONS(3336), 1, + sym_comment, ACTIONS(4722), 1, - aux_sym_preproc_if_token2, - [62008] = 2, - ACTIONS(3323), 1, + aux_sym_preproc_include_token2, + [61574] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4724), 1, aux_sym_preproc_include_token2, - [62015] = 2, + [61581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4726), 1, - anon_sym_RPAREN, - [62022] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [61588] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4728), 1, - sym_identifier, - [62029] = 2, + aux_sym_preproc_include_token2, + [61595] = 2, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4376), 1, + aux_sym_preproc_include_token2, + [61602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4730), 1, sym_identifier, - [62036] = 2, + [61609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4732), 1, - anon_sym_LPAREN2, - [62043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 1, - anon_sym_RPAREN, - [62050] = 2, + sym_identifier, + [61616] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4734), 1, sym_identifier, - [62057] = 2, + [61623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4736), 1, - aux_sym_preproc_if_token2, - [62064] = 2, + ts_builtin_sym_end, + [61630] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4738), 1, - anon_sym_COLON, - [62071] = 2, + aux_sym_preproc_if_token2, + [61637] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4740), 1, - anon_sym_SEMI, - [62078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 1, - anon_sym_SEMI, - [62085] = 2, + aux_sym_preproc_if_token2, + [61644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4742), 1, - sym_identifier, - [62092] = 2, + anon_sym_RPAREN, + [61651] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4744), 1, - anon_sym_SEMI, - [62099] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [61658] = 2, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4746), 1, - aux_sym_preproc_if_token2, - [62106] = 2, + ACTIONS(4374), 1, + aux_sym_preproc_include_token2, + [61665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_SEMI, - [62113] = 2, + ACTIONS(4746), 1, + sym_identifier, + [61672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, - anon_sym_RPAREN, - [62120] = 2, + ACTIONS(4529), 1, + anon_sym_RBRACE, + [61679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 1, - anon_sym_COLON, - [62127] = 2, + ACTIONS(4748), 1, + sym_identifier, + [61686] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4750), 1, - anon_sym_RPAREN, - [62134] = 2, + sym_identifier, + [61693] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4752), 1, - anon_sym_RPAREN, - [62141] = 2, + anon_sym_SEMI, + [61700] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4754), 1, - anon_sym_RBRACK, - [62148] = 2, + anon_sym_SEMI, + [61707] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4756), 1, - aux_sym_preproc_if_token2, - [62155] = 2, - ACTIONS(3323), 1, + anon_sym_RPAREN, + [61714] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4758), 1, - aux_sym_preproc_include_token2, - [62162] = 2, - ACTIONS(3323), 1, + aux_sym_preproc_if_token2, + [61721] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4760), 1, - aux_sym_preproc_include_token2, - [62169] = 2, + anon_sym_RPAREN, + [61728] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4762), 1, - aux_sym_preproc_if_token2, - [62176] = 2, + anon_sym_STAR, + [61735] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4764), 1, - anon_sym_RPAREN, - [62183] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [61742] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4766), 1, - aux_sym_preproc_if_token2, - [62190] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [61749] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4768), 1, - anon_sym_COLON, - [62197] = 2, + aux_sym_preproc_include_token2, + [61756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3141), 1, + anon_sym_SEMI, + [61763] = 2, + ACTIONS(3336), 1, + sym_comment, + ACTIONS(4454), 1, + aux_sym_preproc_include_token2, + [61770] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4770), 1, - aux_sym_preproc_if_token2, - [62204] = 2, + sym_identifier, + [61777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3113), 1, + anon_sym_SEMI, + [61784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4772), 1, anon_sym_RPAREN, - [62211] = 2, + [61791] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4774), 1, - anon_sym_COMMA, - [62218] = 2, + anon_sym_COLON, + [61798] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4776), 1, - sym_identifier, - [62225] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [61805] = 2, + ACTIONS(3059), 1, + aux_sym_preproc_include_token2, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4778), 1, - sym_identifier, - [62232] = 2, - ACTIONS(3), 1, + [61812] = 2, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3149), 1, - anon_sym_COLON, - [62239] = 2, + ACTIONS(4778), 1, + aux_sym_preproc_include_token2, + [61819] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4780), 1, - aux_sym_preproc_if_token2, - [62246] = 2, + anon_sym_RPAREN, + [61826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4782), 1, - aux_sym_preproc_if_token2, - [62253] = 2, - ACTIONS(3323), 1, + sym_identifier, + [61833] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4784), 1, - aux_sym_preproc_include_token2, - [62260] = 2, + aux_sym_preproc_if_token2, + [61840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4786), 1, - sym_identifier, - [62267] = 2, - ACTIONS(3063), 1, - aux_sym_preproc_include_token2, - ACTIONS(3323), 1, + anon_sym_SEMI, + [61847] = 2, + ACTIONS(3), 1, sym_comment, - [62274] = 2, + ACTIONS(3181), 1, + anon_sym_RPAREN, + [61854] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4788), 1, - anon_sym_RBRACE, - [62281] = 2, + aux_sym_preproc_if_token2, + [61861] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4790), 1, anon_sym_RPAREN, - [62288] = 2, - ACTIONS(3323), 1, + [61868] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4792), 1, - aux_sym_preproc_include_token2, - [62295] = 2, + anon_sym_SEMI, + [61875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, - sym_identifier, - [62302] = 2, + ACTIONS(3151), 1, + anon_sym_SEMI, + [61882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, - anon_sym_COMMA, - [62309] = 2, + ACTIONS(4794), 1, + aux_sym_preproc_if_token2, + [61889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 1, - anon_sym_RPAREN, - [62316] = 2, + ACTIONS(3165), 1, + anon_sym_SEMI, + [61896] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4796), 1, sym_identifier, - [62323] = 2, - ACTIONS(3051), 1, - aux_sym_preproc_include_token2, - ACTIONS(3323), 1, + [61903] = 2, + ACTIONS(3), 1, sym_comment, - [62330] = 2, + ACTIONS(3081), 1, + anon_sym_RBRACE, + [61910] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4798), 1, aux_sym_preproc_if_token2, - [62337] = 2, + [61917] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4800), 1, - anon_sym_COLON, - [62344] = 2, + aux_sym_preproc_if_token2, + [61924] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4802), 1, - anon_sym_SEMI, - [62351] = 2, + sym_identifier, + [61931] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4804), 1, sym_identifier, - [62358] = 2, + [61938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3185), 1, + anon_sym_RPAREN, + [61945] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4806), 1, - sym_identifier, - [62365] = 2, + anon_sym_RPAREN, + [61952] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4808), 1, anon_sym_RPAREN, - [62372] = 2, + [61959] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4810), 1, - anon_sym_RPAREN, - [62379] = 2, + anon_sym_RBRACE, + [61966] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4812), 1, - anon_sym_RBRACE, - [62386] = 2, + anon_sym_RPAREN, + [61973] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4814), 1, + anon_sym_RPAREN, + [61980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3153), 1, anon_sym_SEMI, - [62393] = 2, + [61987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3175), 1, + anon_sym_COLON, + [61994] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4816), 1, - aux_sym_preproc_if_token2, - [62400] = 2, + anon_sym_SEMI, + [62001] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4818), 1, - anon_sym_RPAREN, - [62407] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_COLON, - [62414] = 2, + aux_sym_preproc_if_token2, + [62008] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4820), 1, - anon_sym_RPAREN, - [62421] = 2, + aux_sym_preproc_if_token2, + [62015] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4822), 1, - aux_sym_preproc_if_token2, - [62428] = 2, + anon_sym_while, + [62022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4824), 1, - anon_sym_SEMI, - [62435] = 2, - ACTIONS(2153), 1, - aux_sym_preproc_include_token2, - ACTIONS(3323), 1, + ACTIONS(3095), 1, + anon_sym_RPAREN, + [62029] = 2, + ACTIONS(3), 1, sym_comment, - [62442] = 2, + ACTIONS(4824), 1, + sym_identifier, + [62036] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4826), 1, - anon_sym_RBRACE, - [62449] = 2, + aux_sym_preproc_if_token2, + [62043] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4828), 1, - sym_identifier, - [62456] = 2, + aux_sym_preproc_if_token2, + [62050] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4830), 1, aux_sym_preproc_if_token2, - [62463] = 2, - ACTIONS(3323), 1, + [62057] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4832), 1, - aux_sym_preproc_include_token2, - [62470] = 2, + aux_sym_preproc_if_token2, + [62064] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4834), 1, - anon_sym_LPAREN2, - [62477] = 2, + anon_sym_COMMA, + [62071] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4836), 1, - anon_sym_LPAREN2, - [62484] = 2, - ACTIONS(3323), 1, + anon_sym_RPAREN, + [62078] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4838), 1, + anon_sym_RBRACK, + [62085] = 2, + ACTIONS(3051), 1, aux_sym_preproc_include_token2, - [62491] = 2, + ACTIONS(3336), 1, + sym_comment, + [62092] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4840), 1, - aux_sym_preproc_if_token2, - [62498] = 2, + sym_identifier, + [62099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 1, + anon_sym_COMMA, + [62106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4842), 1, + aux_sym_preproc_if_token2, + [62113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3143), 1, anon_sym_RPAREN, - [62505] = 2, + [62120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4844), 1, - anon_sym_SEMI, - [62512] = 2, + sym_primitive_type, + [62127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4846), 1, - aux_sym_preproc_if_token2, - [62519] = 2, - ACTIONS(3323), 1, + anon_sym_SEMI, + [62134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3167), 1, + anon_sym_SEMI, + [62141] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4848), 1, - aux_sym_preproc_include_token2, - [62526] = 2, + anon_sym_RPAREN, + [62148] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3177), 1, + anon_sym_COLON, + [62155] = 2, + ACTIONS(3336), 1, + sym_comment, ACTIONS(4850), 1, - anon_sym_SEMI, - [62533] = 2, + aux_sym_preproc_include_token2, + [62162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4852), 1, - sym_identifier, - [62540] = 2, + anon_sym_SEMI, + [62169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4854), 1, - anon_sym_COLON, - [62547] = 2, + sym_identifier, + [62176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4856), 1, - anon_sym_LPAREN2, - [62554] = 2, - ACTIONS(3), 1, + sym_identifier, + [62183] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4858), 1, - anon_sym_SEMI, - [62561] = 2, + aux_sym_preproc_include_token2, + [62190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4860), 1, aux_sym_preproc_if_token2, - [62568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3175), 1, - anon_sym_COLON, - [62575] = 2, + [62197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4862), 1, - anon_sym_SEMI, - [62582] = 2, + aux_sym_preproc_if_token2, + [62204] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4864), 1, - aux_sym_preproc_if_token2, - [62589] = 2, + anon_sym_SEMI, + [62211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4866), 1, - sym_identifier, - [62596] = 2, + anon_sym_SEMI, + [62218] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4868), 1, - sym_identifier, - [62603] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - anon_sym_RPAREN, - [62610] = 2, + anon_sym_STAR, + [62225] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4870), 1, aux_sym_preproc_if_token2, - [62617] = 2, + [62232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4872), 1, - anon_sym_RBRACE, - [62624] = 2, - ACTIONS(2149), 1, + sym_identifier, + [62239] = 2, + ACTIONS(2171), 1, aux_sym_preproc_include_token2, - ACTIONS(3323), 1, + ACTIONS(3336), 1, sym_comment, - [62631] = 2, - ACTIONS(3323), 1, + [62246] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4357), 1, - aux_sym_preproc_include_token2, - [62638] = 2, + ACTIONS(3145), 1, + anon_sym_RPAREN, + [62253] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4874), 1, aux_sym_preproc_if_token2, - [62645] = 2, + [62260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4876), 1, - anon_sym_SEMI, - [62652] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [62267] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4878), 1, - sym_identifier, - [62659] = 2, + aux_sym_preproc_include_token2, + [62274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4880), 1, sym_identifier, - [62666] = 2, + [62281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4882), 1, aux_sym_preproc_if_token2, - [62673] = 2, - ACTIONS(3323), 1, - sym_comment, - ACTIONS(4372), 1, - aux_sym_preproc_include_token2, - [62680] = 2, - ACTIONS(3323), 1, + [62288] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4884), 1, - aux_sym_preproc_include_token2, - [62687] = 2, + anon_sym_RPAREN, + [62295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 1, + anon_sym_COLON, + [62302] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4886), 1, - anon_sym_RPAREN, - [62694] = 2, + anon_sym_STAR, + [62309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4888), 1, - anon_sym_RPAREN, - [62701] = 2, + sym_identifier, + [62316] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4890), 1, anon_sym_SEMI, - [62708] = 2, + [62323] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4892), 1, - anon_sym_SEMI, - [62715] = 2, + anon_sym_RPAREN, + [62330] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4894), 1, - aux_sym_preproc_if_token2, - [62722] = 2, + sym_identifier, + [62337] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4896), 1, sym_identifier, - [62729] = 2, + [62344] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4898), 1, - sym_identifier, - [62736] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 1, - anon_sym_SEMI, - [62743] = 2, + aux_sym_preproc_if_token2, + [62351] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4900), 1, - anon_sym_RPAREN, - [62750] = 2, + anon_sym_RBRACE, + [62358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4902), 1, aux_sym_preproc_if_token2, - [62757] = 2, + [62365] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4904), 1, - aux_sym_preproc_if_token2, - [62764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_SEMI, - [62771] = 2, + anon_sym_RPAREN, + [62372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4906), 1, anon_sym_RPAREN, - [62778] = 2, + [62379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4908), 1, - anon_sym_SEMI, - [62785] = 2, + sym_identifier, + [62386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4910), 1, - anon_sym_STAR, - [62792] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 1, - anon_sym_RPAREN, - [62799] = 2, + sym_identifier, + [62393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4912), 1, - sym_identifier, - [62806] = 2, + anon_sym_LPAREN2, + [62400] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4914), 1, - sym_identifier, - [62813] = 2, + aux_sym_preproc_if_token2, + [62407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4916), 1, - anon_sym_SEMI, - [62820] = 2, + sym_identifier, + [62414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4918), 1, - sym_identifier, - [62827] = 2, + anon_sym_RBRACE, + [62421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4920), 1, - anon_sym_SEMI, - [62834] = 2, + sym_identifier, + [62428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4922), 1, - anon_sym_SEMI, - [62841] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [62435] = 2, + ACTIONS(3071), 1, + aux_sym_preproc_include_token2, + ACTIONS(3336), 1, sym_comment, - ACTIONS(4924), 1, - sym_identifier, - [62848] = 2, + [62442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, - anon_sym_SEMI, - [62855] = 2, + ACTIONS(4924), 1, + anon_sym_COLON, + [62449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4926), 1, - anon_sym_STAR, - [62862] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, aux_sym_preproc_if_token2, - [62869] = 2, + [62456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, - anon_sym_SEMI, - [62876] = 2, + ACTIONS(4928), 1, + anon_sym_RPAREN, + [62463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4930), 1, anon_sym_SEMI, - [62883] = 2, + [62470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4932), 1, aux_sym_preproc_if_token2, - [62890] = 2, + [62477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 1, - anon_sym_RPAREN, - [62897] = 2, + ACTIONS(3105), 1, + anon_sym_SEMI, + [62484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - sym_identifier, - [62904] = 2, + ACTIONS(4934), 1, + aux_sym_preproc_if_token2, + [62491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(4936), 1, anon_sym_RPAREN, - [62911] = 2, + [62498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4938), 1, aux_sym_preproc_if_token2, - [62918] = 2, + [62505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4940), 1, - anon_sym_LPAREN2, - [62925] = 2, + aux_sym_preproc_if_token2, + [62512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3155), 1, + anon_sym_RPAREN, + [62519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4942), 1, anon_sym_SEMI, - [62932] = 2, + [62526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4944), 1, - aux_sym_preproc_if_token2, - [62939] = 2, + sym_identifier, + [62533] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3195), 1, + anon_sym_RPAREN, + [62540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4946), 1, - anon_sym_STAR, - [62946] = 2, + aux_sym_preproc_if_token2, + [62547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4948), 1, - sym_identifier, - [62953] = 2, - ACTIONS(3323), 1, + anon_sym_LPAREN2, + [62554] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4950), 1, - aux_sym_preproc_include_token2, - [62960] = 2, + sym_identifier, + [62561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4952), 1, - aux_sym_preproc_if_token2, - [62967] = 2, + sym_identifier, + [62568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4954), 1, - sym_identifier, - [62974] = 2, + aux_sym_preproc_if_token2, + [62575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4956), 1, - sym_identifier, - [62981] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [62582] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(4958), 1, - sym_identifier, - [62988] = 2, + aux_sym_preproc_include_token2, + [62589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4960), 1, - aux_sym_preproc_if_token2, - [62995] = 2, + anon_sym_SEMI, + [62596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4962), 1, - sym_primitive_type, - [63002] = 2, + anon_sym_RPAREN, + [62603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4964), 1, - sym_identifier, - [63009] = 2, + anon_sym_LPAREN2, + [62610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4966), 1, anon_sym_LPAREN2, - [63016] = 2, + [62617] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4968), 1, - sym_identifier, - [63023] = 2, + anon_sym_RBRACE, + [62624] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4970), 1, anon_sym_LPAREN2, - [63030] = 2, + [62631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4972), 1, - anon_sym_LPAREN2, - [63037] = 2, + aux_sym_preproc_if_token2, + [62638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4974), 1, - sym_identifier, - [63044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 1, - anon_sym_RPAREN, - [63051] = 2, + anon_sym_RBRACK, + [62645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4976), 1, anon_sym_RPAREN, - [63058] = 2, + [62652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4978), 1, - aux_sym_preproc_if_token2, - [63065] = 2, + anon_sym_SEMI, + [62659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4980), 1, - anon_sym_RPAREN, - [63072] = 2, + aux_sym_preproc_if_token2, + [62666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4982), 1, aux_sym_preproc_if_token2, - [63079] = 2, + [62673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4984), 1, - anon_sym_RPAREN, - [63086] = 2, + anon_sym_while, + [62680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4986), 1, anon_sym_RPAREN, - [63093] = 2, + [62687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4988), 1, - anon_sym_while, - [63100] = 2, + aux_sym_preproc_if_token2, + [62694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 1, + anon_sym_COLON, + [62701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4990), 1, - anon_sym_LPAREN2, - [63107] = 2, + aux_sym_preproc_if_token2, + [62708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4992), 1, - anon_sym_RPAREN, - [63114] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [62715] = 2, + ACTIONS(3336), 1, sym_comment, - ACTIONS(3183), 1, - anon_sym_RPAREN, - [63121] = 2, + ACTIONS(4994), 1, + aux_sym_preproc_include_token2, + [62722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_while, - [63128] = 2, + ACTIONS(3183), 1, + anon_sym_COLON, + [62729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4996), 1, aux_sym_preproc_if_token2, - [63135] = 2, + [62736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4998), 1, - anon_sym_LPAREN2, - [63142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 1, - anon_sym_COLON, - [63149] = 2, + anon_sym_RPAREN, + [62743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5000), 1, - anon_sym_RPAREN, - [63156] = 2, + anon_sym_LPAREN2, + [62750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5002), 1, - sym_identifier, - [63163] = 2, + aux_sym_preproc_if_token2, + [62757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5004), 1, - anon_sym_LPAREN2, - [63170] = 2, - ACTIONS(3047), 1, - aux_sym_preproc_include_token2, - ACTIONS(3323), 1, - sym_comment, - [63177] = 2, + sym_identifier, + [62764] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5006), 1, - aux_sym_preproc_if_token2, - [63184] = 2, + anon_sym_while, + [62771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5008), 1, - anon_sym_while, - [63191] = 2, + anon_sym_COLON, + [62778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5010), 1, - anon_sym_RPAREN, - [63198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 1, - anon_sym_RPAREN, - [63205] = 2, + anon_sym_LPAREN2, + [62785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5012), 1, - anon_sym_LPAREN2, - [63212] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [62792] = 2, + ACTIONS(3055), 1, + aux_sym_preproc_include_token2, + ACTIONS(3336), 1, + sym_comment, + [62799] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(5014), 1, - aux_sym_preproc_if_token2, - [63219] = 2, + aux_sym_preproc_include_token2, + [62806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5016), 1, - aux_sym_preproc_if_token2, - [63226] = 2, + anon_sym_LPAREN2, + [62813] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5018), 1, - aux_sym_preproc_if_token2, - [63233] = 2, + anon_sym_SEMI, + [62820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5020), 1, - anon_sym_COLON, - [63240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4616), 1, - anon_sym_RBRACE, - [63247] = 2, + anon_sym_while, + [62827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5022), 1, - aux_sym_preproc_if_token2, - [63254] = 2, - ACTIONS(3323), 1, + sym_identifier, + [62834] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 1, - aux_sym_preproc_include_token2, - [63261] = 2, - ACTIONS(3323), 1, + ACTIONS(3189), 1, + anon_sym_COLON, + [62841] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(5024), 1, aux_sym_preproc_include_token2, - [63268] = 2, + [62848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5026), 1, - aux_sym_preproc_if_token2, - [63275] = 2, + anon_sym_SEMI, + [62855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5028), 1, anon_sym_LPAREN2, - [63282] = 2, - ACTIONS(3), 1, + [62862] = 2, + ACTIONS(3336), 1, sym_comment, ACTIONS(5030), 1, - sym_identifier, - [63289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3187), 1, - anon_sym_SEMI, - [63296] = 2, + aux_sym_preproc_include_token2, + [62869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5032), 1, - anon_sym_LPAREN2, - [63303] = 2, + aux_sym_preproc_if_token2, + [62876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5034), 1, anon_sym_LPAREN2, - [63310] = 2, + [62883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5036), 1, - anon_sym_RPAREN, - [63317] = 2, + aux_sym_preproc_if_token2, + [62890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5038), 1, - aux_sym_preproc_if_token2, + anon_sym_SEMI, + [62897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3203), 1, + anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(446)] = 0, - [SMALL_STATE(447)] = 115, - [SMALL_STATE(448)] = 230, - [SMALL_STATE(449)] = 345, - [SMALL_STATE(450)] = 460, - [SMALL_STATE(451)] = 575, - [SMALL_STATE(452)] = 690, - [SMALL_STATE(453)] = 804, - [SMALL_STATE(454)] = 918, - [SMALL_STATE(455)] = 1029, - [SMALL_STATE(456)] = 1137, - [SMALL_STATE(457)] = 1245, - [SMALL_STATE(458)] = 1353, - [SMALL_STATE(459)] = 1461, - [SMALL_STATE(460)] = 1569, - [SMALL_STATE(461)] = 1677, - [SMALL_STATE(462)] = 1785, - [SMALL_STATE(463)] = 1893, - [SMALL_STATE(464)] = 2001, - [SMALL_STATE(465)] = 2109, - [SMALL_STATE(466)] = 2217, - [SMALL_STATE(467)] = 2325, - [SMALL_STATE(468)] = 2433, - [SMALL_STATE(469)] = 2541, - [SMALL_STATE(470)] = 2649, - [SMALL_STATE(471)] = 2757, - [SMALL_STATE(472)] = 2865, - [SMALL_STATE(473)] = 2973, - [SMALL_STATE(474)] = 3081, - [SMALL_STATE(475)] = 3189, - [SMALL_STATE(476)] = 3297, - [SMALL_STATE(477)] = 3405, - [SMALL_STATE(478)] = 3513, - [SMALL_STATE(479)] = 3621, - [SMALL_STATE(480)] = 3729, - [SMALL_STATE(481)] = 3819, - [SMALL_STATE(482)] = 3927, - [SMALL_STATE(483)] = 4035, - [SMALL_STATE(484)] = 4143, - [SMALL_STATE(485)] = 4251, - [SMALL_STATE(486)] = 4359, - [SMALL_STATE(487)] = 4467, - [SMALL_STATE(488)] = 4575, - [SMALL_STATE(489)] = 4680, - [SMALL_STATE(490)] = 4785, - [SMALL_STATE(491)] = 4890, - [SMALL_STATE(492)] = 4995, - [SMALL_STATE(493)] = 5100, - [SMALL_STATE(494)] = 5205, - [SMALL_STATE(495)] = 5310, - [SMALL_STATE(496)] = 5415, - [SMALL_STATE(497)] = 5520, - [SMALL_STATE(498)] = 5625, - [SMALL_STATE(499)] = 5730, - [SMALL_STATE(500)] = 5835, - [SMALL_STATE(501)] = 5940, - [SMALL_STATE(502)] = 6042, - [SMALL_STATE(503)] = 6144, - [SMALL_STATE(504)] = 6246, - [SMALL_STATE(505)] = 6348, - [SMALL_STATE(506)] = 6450, - [SMALL_STATE(507)] = 6552, - [SMALL_STATE(508)] = 6654, - [SMALL_STATE(509)] = 6756, - [SMALL_STATE(510)] = 6858, - [SMALL_STATE(511)] = 6960, - [SMALL_STATE(512)] = 7062, - [SMALL_STATE(513)] = 7164, - [SMALL_STATE(514)] = 7266, - [SMALL_STATE(515)] = 7368, - [SMALL_STATE(516)] = 7470, - [SMALL_STATE(517)] = 7572, - [SMALL_STATE(518)] = 7674, - [SMALL_STATE(519)] = 7776, - [SMALL_STATE(520)] = 7878, - [SMALL_STATE(521)] = 7980, - [SMALL_STATE(522)] = 8082, - [SMALL_STATE(523)] = 8184, - [SMALL_STATE(524)] = 8286, - [SMALL_STATE(525)] = 8388, - [SMALL_STATE(526)] = 8490, - [SMALL_STATE(527)] = 8592, - [SMALL_STATE(528)] = 8694, - [SMALL_STATE(529)] = 8796, - [SMALL_STATE(530)] = 8898, - [SMALL_STATE(531)] = 9000, - [SMALL_STATE(532)] = 9102, - [SMALL_STATE(533)] = 9204, - [SMALL_STATE(534)] = 9306, - [SMALL_STATE(535)] = 9408, - [SMALL_STATE(536)] = 9510, - [SMALL_STATE(537)] = 9612, - [SMALL_STATE(538)] = 9714, - [SMALL_STATE(539)] = 9816, - [SMALL_STATE(540)] = 9918, - [SMALL_STATE(541)] = 10020, - [SMALL_STATE(542)] = 10122, - [SMALL_STATE(543)] = 10224, - [SMALL_STATE(544)] = 10326, - [SMALL_STATE(545)] = 10428, - [SMALL_STATE(546)] = 10530, - [SMALL_STATE(547)] = 10632, - [SMALL_STATE(548)] = 10734, - [SMALL_STATE(549)] = 10836, - [SMALL_STATE(550)] = 10938, - [SMALL_STATE(551)] = 11040, - [SMALL_STATE(552)] = 11142, - [SMALL_STATE(553)] = 11244, - [SMALL_STATE(554)] = 11346, - [SMALL_STATE(555)] = 11448, - [SMALL_STATE(556)] = 11550, - [SMALL_STATE(557)] = 11652, - [SMALL_STATE(558)] = 11754, - [SMALL_STATE(559)] = 11856, - [SMALL_STATE(560)] = 11958, - [SMALL_STATE(561)] = 12060, - [SMALL_STATE(562)] = 12162, - [SMALL_STATE(563)] = 12264, - [SMALL_STATE(564)] = 12366, - [SMALL_STATE(565)] = 12468, - [SMALL_STATE(566)] = 12570, - [SMALL_STATE(567)] = 12672, - [SMALL_STATE(568)] = 12774, - [SMALL_STATE(569)] = 12876, - [SMALL_STATE(570)] = 12978, - [SMALL_STATE(571)] = 13080, - [SMALL_STATE(572)] = 13182, - [SMALL_STATE(573)] = 13284, - [SMALL_STATE(574)] = 13386, - [SMALL_STATE(575)] = 13488, - [SMALL_STATE(576)] = 13590, - [SMALL_STATE(577)] = 13692, - [SMALL_STATE(578)] = 13794, - [SMALL_STATE(579)] = 13896, - [SMALL_STATE(580)] = 13998, - [SMALL_STATE(581)] = 14100, - [SMALL_STATE(582)] = 14202, - [SMALL_STATE(583)] = 14304, - [SMALL_STATE(584)] = 14406, - [SMALL_STATE(585)] = 14508, - [SMALL_STATE(586)] = 14610, - [SMALL_STATE(587)] = 14712, - [SMALL_STATE(588)] = 14814, - [SMALL_STATE(589)] = 14916, - [SMALL_STATE(590)] = 15018, - [SMALL_STATE(591)] = 15120, - [SMALL_STATE(592)] = 15222, - [SMALL_STATE(593)] = 15324, - [SMALL_STATE(594)] = 15426, - [SMALL_STATE(595)] = 15528, - [SMALL_STATE(596)] = 15630, - [SMALL_STATE(597)] = 15732, - [SMALL_STATE(598)] = 15834, - [SMALL_STATE(599)] = 15936, - [SMALL_STATE(600)] = 16038, - [SMALL_STATE(601)] = 16140, - [SMALL_STATE(602)] = 16242, - [SMALL_STATE(603)] = 16344, - [SMALL_STATE(604)] = 16446, - [SMALL_STATE(605)] = 16548, - [SMALL_STATE(606)] = 16650, - [SMALL_STATE(607)] = 16752, - [SMALL_STATE(608)] = 16854, - [SMALL_STATE(609)] = 16956, - [SMALL_STATE(610)] = 17058, - [SMALL_STATE(611)] = 17160, - [SMALL_STATE(612)] = 17262, - [SMALL_STATE(613)] = 17364, - [SMALL_STATE(614)] = 17466, - [SMALL_STATE(615)] = 17568, - [SMALL_STATE(616)] = 17670, - [SMALL_STATE(617)] = 17741, - [SMALL_STATE(618)] = 17812, - [SMALL_STATE(619)] = 17883, - [SMALL_STATE(620)] = 17951, - [SMALL_STATE(621)] = 18014, - [SMALL_STATE(622)] = 18077, - [SMALL_STATE(623)] = 18139, - [SMALL_STATE(624)] = 18201, - [SMALL_STATE(625)] = 18263, - [SMALL_STATE(626)] = 18341, - [SMALL_STATE(627)] = 18403, - [SMALL_STATE(628)] = 18465, - [SMALL_STATE(629)] = 18527, - [SMALL_STATE(630)] = 18589, - [SMALL_STATE(631)] = 18651, - [SMALL_STATE(632)] = 18713, - [SMALL_STATE(633)] = 18775, - [SMALL_STATE(634)] = 18874, - [SMALL_STATE(635)] = 18973, - [SMALL_STATE(636)] = 19072, - [SMALL_STATE(637)] = 19171, - [SMALL_STATE(638)] = 19270, - [SMALL_STATE(639)] = 19369, - [SMALL_STATE(640)] = 19468, - [SMALL_STATE(641)] = 19567, - [SMALL_STATE(642)] = 19666, - [SMALL_STATE(643)] = 19765, - [SMALL_STATE(644)] = 19864, - [SMALL_STATE(645)] = 19963, - [SMALL_STATE(646)] = 20062, - [SMALL_STATE(647)] = 20161, - [SMALL_STATE(648)] = 20260, - [SMALL_STATE(649)] = 20361, - [SMALL_STATE(650)] = 20460, - [SMALL_STATE(651)] = 20559, - [SMALL_STATE(652)] = 20655, - [SMALL_STATE(653)] = 20753, - [SMALL_STATE(654)] = 20849, - [SMALL_STATE(655)] = 20914, - [SMALL_STATE(656)] = 20973, - [SMALL_STATE(657)] = 21032, - [SMALL_STATE(658)] = 21091, - [SMALL_STATE(659)] = 21160, - [SMALL_STATE(660)] = 21219, - [SMALL_STATE(661)] = 21278, - [SMALL_STATE(662)] = 21336, - [SMALL_STATE(663)] = 21394, - [SMALL_STATE(664)] = 21452, - [SMALL_STATE(665)] = 21510, - [SMALL_STATE(666)] = 21568, - [SMALL_STATE(667)] = 21626, - [SMALL_STATE(668)] = 21684, - [SMALL_STATE(669)] = 21742, - [SMALL_STATE(670)] = 21800, - [SMALL_STATE(671)] = 21858, - [SMALL_STATE(672)] = 21916, - [SMALL_STATE(673)] = 21974, - [SMALL_STATE(674)] = 22032, - [SMALL_STATE(675)] = 22090, - [SMALL_STATE(676)] = 22148, - [SMALL_STATE(677)] = 22206, - [SMALL_STATE(678)] = 22264, - [SMALL_STATE(679)] = 22353, - [SMALL_STATE(680)] = 22410, - [SMALL_STATE(681)] = 22467, - [SMALL_STATE(682)] = 22532, - [SMALL_STATE(683)] = 22621, - [SMALL_STATE(684)] = 22678, - [SMALL_STATE(685)] = 22739, - [SMALL_STATE(686)] = 22806, - [SMALL_STATE(687)] = 22873, - [SMALL_STATE(688)] = 22940, - [SMALL_STATE(689)] = 23007, - [SMALL_STATE(690)] = 23096, - [SMALL_STATE(691)] = 23153, - [SMALL_STATE(692)] = 23220, - [SMALL_STATE(693)] = 23285, - [SMALL_STATE(694)] = 23374, - [SMALL_STATE(695)] = 23463, - [SMALL_STATE(696)] = 23552, - [SMALL_STATE(697)] = 23641, - [SMALL_STATE(698)] = 23730, - [SMALL_STATE(699)] = 23794, - [SMALL_STATE(700)] = 23850, - [SMALL_STATE(701)] = 23906, - [SMALL_STATE(702)] = 23992, - [SMALL_STATE(703)] = 24055, - [SMALL_STATE(704)] = 24118, - [SMALL_STATE(705)] = 24181, - [SMALL_STATE(706)] = 24244, - [SMALL_STATE(707)] = 24299, - [SMALL_STATE(708)] = 24354, - [SMALL_STATE(709)] = 24409, - [SMALL_STATE(710)] = 24472, - [SMALL_STATE(711)] = 24526, - [SMALL_STATE(712)] = 24596, - [SMALL_STATE(713)] = 24666, - [SMALL_STATE(714)] = 24736, - [SMALL_STATE(715)] = 24790, - [SMALL_STATE(716)] = 24860, - [SMALL_STATE(717)] = 24914, - [SMALL_STATE(718)] = 24971, - [SMALL_STATE(719)] = 25028, - [SMALL_STATE(720)] = 25091, - [SMALL_STATE(721)] = 25148, - [SMALL_STATE(722)] = 25205, - [SMALL_STATE(723)] = 25262, - [SMALL_STATE(724)] = 25325, - [SMALL_STATE(725)] = 25382, - [SMALL_STATE(726)] = 25445, - [SMALL_STATE(727)] = 25508, - [SMALL_STATE(728)] = 25571, - [SMALL_STATE(729)] = 25628, - [SMALL_STATE(730)] = 25691, - [SMALL_STATE(731)] = 25748, - [SMALL_STATE(732)] = 25805, - [SMALL_STATE(733)] = 25862, - [SMALL_STATE(734)] = 25919, - [SMALL_STATE(735)] = 25971, - [SMALL_STATE(736)] = 26027, - [SMALL_STATE(737)] = 26083, - [SMALL_STATE(738)] = 26139, - [SMALL_STATE(739)] = 26195, - [SMALL_STATE(740)] = 26253, - [SMALL_STATE(741)] = 26305, - [SMALL_STATE(742)] = 26357, - [SMALL_STATE(743)] = 26409, - [SMALL_STATE(744)] = 26461, - [SMALL_STATE(745)] = 26513, - [SMALL_STATE(746)] = 26565, - [SMALL_STATE(747)] = 26617, - [SMALL_STATE(748)] = 26669, - [SMALL_STATE(749)] = 26721, - [SMALL_STATE(750)] = 26773, - [SMALL_STATE(751)] = 26825, - [SMALL_STATE(752)] = 26877, - [SMALL_STATE(753)] = 26933, - [SMALL_STATE(754)] = 26985, - [SMALL_STATE(755)] = 27037, - [SMALL_STATE(756)] = 27089, - [SMALL_STATE(757)] = 27141, - [SMALL_STATE(758)] = 27193, - [SMALL_STATE(759)] = 27253, - [SMALL_STATE(760)] = 27339, - [SMALL_STATE(761)] = 27403, - [SMALL_STATE(762)] = 27485, - [SMALL_STATE(763)] = 27565, - [SMALL_STATE(764)] = 27643, - [SMALL_STATE(765)] = 27719, - [SMALL_STATE(766)] = 27793, - [SMALL_STATE(767)] = 27865, - [SMALL_STATE(768)] = 27933, - [SMALL_STATE(769)] = 27999, - [SMALL_STATE(770)] = 28085, - [SMALL_STATE(771)] = 28171, - [SMALL_STATE(772)] = 28231, - [SMALL_STATE(773)] = 28283, - [SMALL_STATE(774)] = 28335, - [SMALL_STATE(775)] = 28387, - [SMALL_STATE(776)] = 28439, - [SMALL_STATE(777)] = 28495, - [SMALL_STATE(778)] = 28551, - [SMALL_STATE(779)] = 28603, - [SMALL_STATE(780)] = 28655, - [SMALL_STATE(781)] = 28707, - [SMALL_STATE(782)] = 28759, - [SMALL_STATE(783)] = 28817, - [SMALL_STATE(784)] = 28869, - [SMALL_STATE(785)] = 28938, - [SMALL_STATE(786)] = 29015, - [SMALL_STATE(787)] = 29066, - [SMALL_STATE(788)] = 29151, - [SMALL_STATE(789)] = 29202, - [SMALL_STATE(790)] = 29253, - [SMALL_STATE(791)] = 29304, - [SMALL_STATE(792)] = 29355, - [SMALL_STATE(793)] = 29406, - [SMALL_STATE(794)] = 29457, - [SMALL_STATE(795)] = 29508, - [SMALL_STATE(796)] = 29559, - [SMALL_STATE(797)] = 29630, - [SMALL_STATE(798)] = 29681, - [SMALL_STATE(799)] = 29766, - [SMALL_STATE(800)] = 29817, - [SMALL_STATE(801)] = 29890, - [SMALL_STATE(802)] = 29941, - [SMALL_STATE(803)] = 30010, - [SMALL_STATE(804)] = 30061, - [SMALL_STATE(805)] = 30130, - [SMALL_STATE(806)] = 30181, - [SMALL_STATE(807)] = 30232, - [SMALL_STATE(808)] = 30283, - [SMALL_STATE(809)] = 30334, - [SMALL_STATE(810)] = 30385, - [SMALL_STATE(811)] = 30454, - [SMALL_STATE(812)] = 30509, - [SMALL_STATE(813)] = 30594, - [SMALL_STATE(814)] = 30661, - [SMALL_STATE(815)] = 30726, - [SMALL_STATE(816)] = 30789, - [SMALL_STATE(817)] = 30870, - [SMALL_STATE(818)] = 30949, - [SMALL_STATE(819)] = 31024, - [SMALL_STATE(820)] = 31110, - [SMALL_STATE(821)] = 31164, - [SMALL_STATE(822)] = 31224, - [SMALL_STATE(823)] = 31310, - [SMALL_STATE(824)] = 31367, - [SMALL_STATE(825)] = 31422, - [SMALL_STATE(826)] = 31477, - [SMALL_STATE(827)] = 31525, - [SMALL_STATE(828)] = 31573, - [SMALL_STATE(829)] = 31652, - [SMALL_STATE(830)] = 31699, - [SMALL_STATE(831)] = 31746, - [SMALL_STATE(832)] = 31793, - [SMALL_STATE(833)] = 31840, - [SMALL_STATE(834)] = 31887, - [SMALL_STATE(835)] = 31934, - [SMALL_STATE(836)] = 31981, - [SMALL_STATE(837)] = 32028, - [SMALL_STATE(838)] = 32075, - [SMALL_STATE(839)] = 32122, - [SMALL_STATE(840)] = 32169, - [SMALL_STATE(841)] = 32216, - [SMALL_STATE(842)] = 32263, - [SMALL_STATE(843)] = 32310, - [SMALL_STATE(844)] = 32357, - [SMALL_STATE(845)] = 32404, - [SMALL_STATE(846)] = 32455, - [SMALL_STATE(847)] = 32506, - [SMALL_STATE(848)] = 32553, - [SMALL_STATE(849)] = 32600, - [SMALL_STATE(850)] = 32647, - [SMALL_STATE(851)] = 32706, - [SMALL_STATE(852)] = 32765, - [SMALL_STATE(853)] = 32816, - [SMALL_STATE(854)] = 32899, - [SMALL_STATE(855)] = 32960, - [SMALL_STATE(856)] = 33037, - [SMALL_STATE(857)] = 33112, - [SMALL_STATE(858)] = 33185, - [SMALL_STATE(859)] = 33256, - [SMALL_STATE(860)] = 33325, - [SMALL_STATE(861)] = 33390, - [SMALL_STATE(862)] = 33453, - [SMALL_STATE(863)] = 33500, - [SMALL_STATE(864)] = 33583, - [SMALL_STATE(865)] = 33666, - [SMALL_STATE(866)] = 33713, - [SMALL_STATE(867)] = 33760, - [SMALL_STATE(868)] = 33807, - [SMALL_STATE(869)] = 33854, - [SMALL_STATE(870)] = 33901, - [SMALL_STATE(871)] = 33948, - [SMALL_STATE(872)] = 33995, - [SMALL_STATE(873)] = 34046, - [SMALL_STATE(874)] = 34103, - [SMALL_STATE(875)] = 34162, - [SMALL_STATE(876)] = 34221, - [SMALL_STATE(877)] = 34280, - [SMALL_STATE(878)] = 34331, - [SMALL_STATE(879)] = 34378, - [SMALL_STATE(880)] = 34425, - [SMALL_STATE(881)] = 34472, - [SMALL_STATE(882)] = 34519, - [SMALL_STATE(883)] = 34570, - [SMALL_STATE(884)] = 34617, - [SMALL_STATE(885)] = 34664, - [SMALL_STATE(886)] = 34715, - [SMALL_STATE(887)] = 34762, - [SMALL_STATE(888)] = 34809, - [SMALL_STATE(889)] = 34856, - [SMALL_STATE(890)] = 34902, - [SMALL_STATE(891)] = 34948, - [SMALL_STATE(892)] = 35024, - [SMALL_STATE(893)] = 35070, - [SMALL_STATE(894)] = 35120, - [SMALL_STATE(895)] = 35196, - [SMALL_STATE(896)] = 35272, - [SMALL_STATE(897)] = 35348, - [SMALL_STATE(898)] = 35394, - [SMALL_STATE(899)] = 35439, - [SMALL_STATE(900)] = 35490, - [SMALL_STATE(901)] = 35547, - [SMALL_STATE(902)] = 35591, - [SMALL_STATE(903)] = 35635, - [SMALL_STATE(904)] = 35689, - [SMALL_STATE(905)] = 35741, - [SMALL_STATE(906)] = 35785, - [SMALL_STATE(907)] = 35829, - [SMALL_STATE(908)] = 35873, - [SMALL_STATE(909)] = 35917, - [SMALL_STATE(910)] = 35961, - [SMALL_STATE(911)] = 36005, - [SMALL_STATE(912)] = 36049, - [SMALL_STATE(913)] = 36093, - [SMALL_STATE(914)] = 36135, - [SMALL_STATE(915)] = 36179, - [SMALL_STATE(916)] = 36221, - [SMALL_STATE(917)] = 36293, - [SMALL_STATE(918)] = 36363, - [SMALL_STATE(919)] = 36433, - [SMALL_STATE(920)] = 36477, - [SMALL_STATE(921)] = 36549, - [SMALL_STATE(922)] = 36591, - [SMALL_STATE(923)] = 36633, - [SMALL_STATE(924)] = 36675, - [SMALL_STATE(925)] = 36717, - [SMALL_STATE(926)] = 36759, - [SMALL_STATE(927)] = 36801, - [SMALL_STATE(928)] = 36845, - [SMALL_STATE(929)] = 36887, - [SMALL_STATE(930)] = 36929, - [SMALL_STATE(931)] = 36971, - [SMALL_STATE(932)] = 37015, - [SMALL_STATE(933)] = 37057, - [SMALL_STATE(934)] = 37099, - [SMALL_STATE(935)] = 37158, - [SMALL_STATE(936)] = 37225, - [SMALL_STATE(937)] = 37302, - [SMALL_STATE(938)] = 37373, - [SMALL_STATE(939)] = 37440, - [SMALL_STATE(940)] = 37509, - [SMALL_STATE(941)] = 37576, - [SMALL_STATE(942)] = 37643, - [SMALL_STATE(943)] = 37710, - [SMALL_STATE(944)] = 37777, - [SMALL_STATE(945)] = 37842, - [SMALL_STATE(946)] = 37919, - [SMALL_STATE(947)] = 37982, - [SMALL_STATE(948)] = 38049, - [SMALL_STATE(949)] = 38116, - [SMALL_STATE(950)] = 38171, - [SMALL_STATE(951)] = 38228, - [SMALL_STATE(952)] = 38295, - [SMALL_STATE(953)] = 38372, - [SMALL_STATE(954)] = 38449, - [SMALL_STATE(955)] = 38522, - [SMALL_STATE(956)] = 38576, - [SMALL_STATE(957)] = 38632, - [SMALL_STATE(958)] = 38702, - [SMALL_STATE(959)] = 38770, - [SMALL_STATE(960)] = 38834, - [SMALL_STATE(961)] = 38902, - [SMALL_STATE(962)] = 38976, - [SMALL_STATE(963)] = 39050, - [SMALL_STATE(964)] = 39124, - [SMALL_STATE(965)] = 39172, - [SMALL_STATE(966)] = 39238, - [SMALL_STATE(967)] = 39296, - [SMALL_STATE(968)] = 39358, - [SMALL_STATE(969)] = 39421, - [SMALL_STATE(970)] = 39484, - [SMALL_STATE(971)] = 39547, - [SMALL_STATE(972)] = 39610, - [SMALL_STATE(973)] = 39673, - [SMALL_STATE(974)] = 39736, - [SMALL_STATE(975)] = 39799, - [SMALL_STATE(976)] = 39862, - [SMALL_STATE(977)] = 39925, - [SMALL_STATE(978)] = 39988, - [SMALL_STATE(979)] = 40051, - [SMALL_STATE(980)] = 40114, - [SMALL_STATE(981)] = 40177, - [SMALL_STATE(982)] = 40223, - [SMALL_STATE(983)] = 40283, - [SMALL_STATE(984)] = 40343, - [SMALL_STATE(985)] = 40381, - [SMALL_STATE(986)] = 40419, - [SMALL_STATE(987)] = 40479, - [SMALL_STATE(988)] = 40553, - [SMALL_STATE(989)] = 40613, - [SMALL_STATE(990)] = 40673, - [SMALL_STATE(991)] = 40733, - [SMALL_STATE(992)] = 40771, - [SMALL_STATE(993)] = 40809, - [SMALL_STATE(994)] = 40884, - [SMALL_STATE(995)] = 40959, - [SMALL_STATE(996)] = 41034, - [SMALL_STATE(997)] = 41109, - [SMALL_STATE(998)] = 41184, - [SMALL_STATE(999)] = 41259, - [SMALL_STATE(1000)] = 41296, - [SMALL_STATE(1001)] = 41333, - [SMALL_STATE(1002)] = 41404, - [SMALL_STATE(1003)] = 41476, - [SMALL_STATE(1004)] = 41540, - [SMALL_STATE(1005)] = 41602, - [SMALL_STATE(1006)] = 41662, - [SMALL_STATE(1007)] = 41718, - [SMALL_STATE(1008)] = 41772, - [SMALL_STATE(1009)] = 41842, - [SMALL_STATE(1010)] = 41914, - [SMALL_STATE(1011)] = 41984, - [SMALL_STATE(1012)] = 42056, - [SMALL_STATE(1013)] = 42128, - [SMALL_STATE(1014)] = 42200, - [SMALL_STATE(1015)] = 42272, - [SMALL_STATE(1016)] = 42346, - [SMALL_STATE(1017)] = 42416, - [SMALL_STATE(1018)] = 42488, - [SMALL_STATE(1019)] = 42560, - [SMALL_STATE(1020)] = 42632, - [SMALL_STATE(1021)] = 42704, - [SMALL_STATE(1022)] = 42776, - [SMALL_STATE(1023)] = 42822, - [SMALL_STATE(1024)] = 42894, - [SMALL_STATE(1025)] = 42966, - [SMALL_STATE(1026)] = 43038, - [SMALL_STATE(1027)] = 43104, - [SMALL_STATE(1028)] = 43176, - [SMALL_STATE(1029)] = 43248, - [SMALL_STATE(1030)] = 43320, - [SMALL_STATE(1031)] = 43392, - [SMALL_STATE(1032)] = 43462, - [SMALL_STATE(1033)] = 43532, - [SMALL_STATE(1034)] = 43602, - [SMALL_STATE(1035)] = 43672, - [SMALL_STATE(1036)] = 43744, - [SMALL_STATE(1037)] = 43816, - [SMALL_STATE(1038)] = 43888, - [SMALL_STATE(1039)] = 43960, - [SMALL_STATE(1040)] = 44032, - [SMALL_STATE(1041)] = 44104, - [SMALL_STATE(1042)] = 44176, - [SMALL_STATE(1043)] = 44248, - [SMALL_STATE(1044)] = 44320, - [SMALL_STATE(1045)] = 44392, - [SMALL_STATE(1046)] = 44436, - [SMALL_STATE(1047)] = 44488, - [SMALL_STATE(1048)] = 44556, - [SMALL_STATE(1049)] = 44622, - [SMALL_STATE(1050)] = 44694, - [SMALL_STATE(1051)] = 44764, - [SMALL_STATE(1052)] = 44833, - [SMALL_STATE(1053)] = 44902, - [SMALL_STATE(1054)] = 44971, - [SMALL_STATE(1055)] = 45040, - [SMALL_STATE(1056)] = 45109, - [SMALL_STATE(1057)] = 45178, - [SMALL_STATE(1058)] = 45247, - [SMALL_STATE(1059)] = 45316, - [SMALL_STATE(1060)] = 45385, - [SMALL_STATE(1061)] = 45454, - [SMALL_STATE(1062)] = 45523, - [SMALL_STATE(1063)] = 45592, - [SMALL_STATE(1064)] = 45661, - [SMALL_STATE(1065)] = 45730, - [SMALL_STATE(1066)] = 45799, - [SMALL_STATE(1067)] = 45868, - [SMALL_STATE(1068)] = 45937, - [SMALL_STATE(1069)] = 46006, - [SMALL_STATE(1070)] = 46075, - [SMALL_STATE(1071)] = 46144, - [SMALL_STATE(1072)] = 46213, - [SMALL_STATE(1073)] = 46282, - [SMALL_STATE(1074)] = 46336, - [SMALL_STATE(1075)] = 46390, - [SMALL_STATE(1076)] = 46444, - [SMALL_STATE(1077)] = 46498, - [SMALL_STATE(1078)] = 46536, - [SMALL_STATE(1079)] = 46602, - [SMALL_STATE(1080)] = 46638, - [SMALL_STATE(1081)] = 46676, - [SMALL_STATE(1082)] = 46730, - [SMALL_STATE(1083)] = 46784, - [SMALL_STATE(1084)] = 46822, - [SMALL_STATE(1085)] = 46873, - [SMALL_STATE(1086)] = 46924, - [SMALL_STATE(1087)] = 46975, - [SMALL_STATE(1088)] = 47026, - [SMALL_STATE(1089)] = 47077, - [SMALL_STATE(1090)] = 47128, - [SMALL_STATE(1091)] = 47166, - [SMALL_STATE(1092)] = 47206, - [SMALL_STATE(1093)] = 47255, - [SMALL_STATE(1094)] = 47294, - [SMALL_STATE(1095)] = 47333, - [SMALL_STATE(1096)] = 47372, - [SMALL_STATE(1097)] = 47411, - [SMALL_STATE(1098)] = 47465, - [SMALL_STATE(1099)] = 47499, - [SMALL_STATE(1100)] = 47553, - [SMALL_STATE(1101)] = 47607, - [SMALL_STATE(1102)] = 47661, - [SMALL_STATE(1103)] = 47698, - [SMALL_STATE(1104)] = 47753, - [SMALL_STATE(1105)] = 47804, - [SMALL_STATE(1106)] = 47859, - [SMALL_STATE(1107)] = 47910, - [SMALL_STATE(1108)] = 47943, - [SMALL_STATE(1109)] = 47976, - [SMALL_STATE(1110)] = 48027, - [SMALL_STATE(1111)] = 48070, - [SMALL_STATE(1112)] = 48103, - [SMALL_STATE(1113)] = 48154, - [SMALL_STATE(1114)] = 48187, - [SMALL_STATE(1115)] = 48242, - [SMALL_STATE(1116)] = 48275, - [SMALL_STATE(1117)] = 48326, - [SMALL_STATE(1118)] = 48359, - [SMALL_STATE(1119)] = 48410, - [SMALL_STATE(1120)] = 48453, - [SMALL_STATE(1121)] = 48504, - [SMALL_STATE(1122)] = 48555, - [SMALL_STATE(1123)] = 48606, - [SMALL_STATE(1124)] = 48639, - [SMALL_STATE(1125)] = 48674, - [SMALL_STATE(1126)] = 48717, - [SMALL_STATE(1127)] = 48768, - [SMALL_STATE(1128)] = 48801, - [SMALL_STATE(1129)] = 48834, - [SMALL_STATE(1130)] = 48885, - [SMALL_STATE(1131)] = 48925, - [SMALL_STATE(1132)] = 48965, - [SMALL_STATE(1133)] = 49005, - [SMALL_STATE(1134)] = 49045, - [SMALL_STATE(1135)] = 49085, - [SMALL_STATE(1136)] = 49133, - [SMALL_STATE(1137)] = 49173, - [SMALL_STATE(1138)] = 49213, - [SMALL_STATE(1139)] = 49253, - [SMALL_STATE(1140)] = 49293, - [SMALL_STATE(1141)] = 49333, - [SMALL_STATE(1142)] = 49373, - [SMALL_STATE(1143)] = 49413, - [SMALL_STATE(1144)] = 49453, - [SMALL_STATE(1145)] = 49493, - [SMALL_STATE(1146)] = 49533, - [SMALL_STATE(1147)] = 49561, - [SMALL_STATE(1148)] = 49601, - [SMALL_STATE(1149)] = 49641, - [SMALL_STATE(1150)] = 49681, - [SMALL_STATE(1151)] = 49709, - [SMALL_STATE(1152)] = 49737, - [SMALL_STATE(1153)] = 49765, - [SMALL_STATE(1154)] = 49805, - [SMALL_STATE(1155)] = 49837, - [SMALL_STATE(1156)] = 49877, - [SMALL_STATE(1157)] = 49905, - [SMALL_STATE(1158)] = 49945, - [SMALL_STATE(1159)] = 49985, - [SMALL_STATE(1160)] = 50025, - [SMALL_STATE(1161)] = 50073, - [SMALL_STATE(1162)] = 50119, - [SMALL_STATE(1163)] = 50165, - [SMALL_STATE(1164)] = 50205, - [SMALL_STATE(1165)] = 50245, - [SMALL_STATE(1166)] = 50289, - [SMALL_STATE(1167)] = 50331, - [SMALL_STATE(1168)] = 50371, - [SMALL_STATE(1169)] = 50407, - [SMALL_STATE(1170)] = 50447, - [SMALL_STATE(1171)] = 50487, - [SMALL_STATE(1172)] = 50527, - [SMALL_STATE(1173)] = 50567, - [SMALL_STATE(1174)] = 50601, - [SMALL_STATE(1175)] = 50641, - [SMALL_STATE(1176)] = 50681, - [SMALL_STATE(1177)] = 50721, - [SMALL_STATE(1178)] = 50761, - [SMALL_STATE(1179)] = 50801, - [SMALL_STATE(1180)] = 50841, - [SMALL_STATE(1181)] = 50881, - [SMALL_STATE(1182)] = 50921, - [SMALL_STATE(1183)] = 50949, - [SMALL_STATE(1184)] = 50999, - [SMALL_STATE(1185)] = 51039, - [SMALL_STATE(1186)] = 51079, - [SMALL_STATE(1187)] = 51124, - [SMALL_STATE(1188)] = 51151, - [SMALL_STATE(1189)] = 51178, - [SMALL_STATE(1190)] = 51205, - [SMALL_STATE(1191)] = 51254, - [SMALL_STATE(1192)] = 51299, - [SMALL_STATE(1193)] = 51344, - [SMALL_STATE(1194)] = 51389, - [SMALL_STATE(1195)] = 51434, - [SMALL_STATE(1196)] = 51477, - [SMALL_STATE(1197)] = 51522, - [SMALL_STATE(1198)] = 51549, - [SMALL_STATE(1199)] = 51576, - [SMALL_STATE(1200)] = 51619, - [SMALL_STATE(1201)] = 51664, - [SMALL_STATE(1202)] = 51709, - [SMALL_STATE(1203)] = 51754, - [SMALL_STATE(1204)] = 51799, - [SMALL_STATE(1205)] = 51836, - [SMALL_STATE(1206)] = 51863, - [SMALL_STATE(1207)] = 51904, - [SMALL_STATE(1208)] = 51953, - [SMALL_STATE(1209)] = 51980, - [SMALL_STATE(1210)] = 52019, - [SMALL_STATE(1211)] = 52056, - [SMALL_STATE(1212)] = 52099, - [SMALL_STATE(1213)] = 52126, - [SMALL_STATE(1214)] = 52171, - [SMALL_STATE(1215)] = 52206, - [SMALL_STATE(1216)] = 52239, - [SMALL_STATE(1217)] = 52266, - [SMALL_STATE(1218)] = 52309, - [SMALL_STATE(1219)] = 52354, - [SMALL_STATE(1220)] = 52385, - [SMALL_STATE(1221)] = 52430, - [SMALL_STATE(1222)] = 52457, - [SMALL_STATE(1223)] = 52502, - [SMALL_STATE(1224)] = 52547, - [SMALL_STATE(1225)] = 52576, - [SMALL_STATE(1226)] = 52619, - [SMALL_STATE(1227)] = 52659, - [SMALL_STATE(1228)] = 52699, - [SMALL_STATE(1229)] = 52739, - [SMALL_STATE(1230)] = 52783, - [SMALL_STATE(1231)] = 52823, - [SMALL_STATE(1232)] = 52863, - [SMALL_STATE(1233)] = 52903, - [SMALL_STATE(1234)] = 52944, - [SMALL_STATE(1235)] = 52985, - [SMALL_STATE(1236)] = 53026, - [SMALL_STATE(1237)] = 53067, - [SMALL_STATE(1238)] = 53108, - [SMALL_STATE(1239)] = 53149, - [SMALL_STATE(1240)] = 53190, - [SMALL_STATE(1241)] = 53231, - [SMALL_STATE(1242)] = 53265, - [SMALL_STATE(1243)] = 53303, - [SMALL_STATE(1244)] = 53343, - [SMALL_STATE(1245)] = 53381, - [SMALL_STATE(1246)] = 53418, - [SMALL_STATE(1247)] = 53447, - [SMALL_STATE(1248)] = 53486, - [SMALL_STATE(1249)] = 53525, - [SMALL_STATE(1250)] = 53566, - [SMALL_STATE(1251)] = 53607, - [SMALL_STATE(1252)] = 53636, - [SMALL_STATE(1253)] = 53675, - [SMALL_STATE(1254)] = 53716, - [SMALL_STATE(1255)] = 53745, - [SMALL_STATE(1256)] = 53774, - [SMALL_STATE(1257)] = 53813, - [SMALL_STATE(1258)] = 53839, - [SMALL_STATE(1259)] = 53872, - [SMALL_STATE(1260)] = 53909, - [SMALL_STATE(1261)] = 53942, - [SMALL_STATE(1262)] = 53979, - [SMALL_STATE(1263)] = 54008, - [SMALL_STATE(1264)] = 54037, - [SMALL_STATE(1265)] = 54058, - [SMALL_STATE(1266)] = 54083, - [SMALL_STATE(1267)] = 54120, - [SMALL_STATE(1268)] = 54149, - [SMALL_STATE(1269)] = 54186, - [SMALL_STATE(1270)] = 54223, - [SMALL_STATE(1271)] = 54252, - [SMALL_STATE(1272)] = 54273, - [SMALL_STATE(1273)] = 54310, - [SMALL_STATE(1274)] = 54347, - [SMALL_STATE(1275)] = 54384, - [SMALL_STATE(1276)] = 54421, - [SMALL_STATE(1277)] = 54458, - [SMALL_STATE(1278)] = 54495, - [SMALL_STATE(1279)] = 54516, - [SMALL_STATE(1280)] = 54540, - [SMALL_STATE(1281)] = 54576, - [SMALL_STATE(1282)] = 54607, - [SMALL_STATE(1283)] = 54636, - [SMALL_STATE(1284)] = 54665, - [SMALL_STATE(1285)] = 54690, - [SMALL_STATE(1286)] = 54721, - [SMALL_STATE(1287)] = 54752, - [SMALL_STATE(1288)] = 54781, - [SMALL_STATE(1289)] = 54808, - [SMALL_STATE(1290)] = 54837, - [SMALL_STATE(1291)] = 54868, - [SMALL_STATE(1292)] = 54897, - [SMALL_STATE(1293)] = 54926, - [SMALL_STATE(1294)] = 54955, - [SMALL_STATE(1295)] = 54982, - [SMALL_STATE(1296)] = 55007, - [SMALL_STATE(1297)] = 55038, - [SMALL_STATE(1298)] = 55067, - [SMALL_STATE(1299)] = 55096, - [SMALL_STATE(1300)] = 55125, - [SMALL_STATE(1301)] = 55152, - [SMALL_STATE(1302)] = 55181, - [SMALL_STATE(1303)] = 55212, - [SMALL_STATE(1304)] = 55241, - [SMALL_STATE(1305)] = 55272, - [SMALL_STATE(1306)] = 55301, - [SMALL_STATE(1307)] = 55330, - [SMALL_STATE(1308)] = 55357, - [SMALL_STATE(1309)] = 55388, - [SMALL_STATE(1310)] = 55419, - [SMALL_STATE(1311)] = 55437, - [SMALL_STATE(1312)] = 55455, - [SMALL_STATE(1313)] = 55473, - [SMALL_STATE(1314)] = 55499, - [SMALL_STATE(1315)] = 55531, - [SMALL_STATE(1316)] = 55557, - [SMALL_STATE(1317)] = 55581, - [SMALL_STATE(1318)] = 55605, - [SMALL_STATE(1319)] = 55627, - [SMALL_STATE(1320)] = 55659, - [SMALL_STATE(1321)] = 55685, - [SMALL_STATE(1322)] = 55717, - [SMALL_STATE(1323)] = 55735, - [SMALL_STATE(1324)] = 55765, - [SMALL_STATE(1325)] = 55783, - [SMALL_STATE(1326)] = 55801, - [SMALL_STATE(1327)] = 55827, - [SMALL_STATE(1328)] = 55845, - [SMALL_STATE(1329)] = 55877, - [SMALL_STATE(1330)] = 55898, - [SMALL_STATE(1331)] = 55919, - [SMALL_STATE(1332)] = 55938, - [SMALL_STATE(1333)] = 55959, - [SMALL_STATE(1334)] = 55988, - [SMALL_STATE(1335)] = 56009, - [SMALL_STATE(1336)] = 56034, - [SMALL_STATE(1337)] = 56063, - [SMALL_STATE(1338)] = 56092, - [SMALL_STATE(1339)] = 56113, - [SMALL_STATE(1340)] = 56142, - [SMALL_STATE(1341)] = 56171, - [SMALL_STATE(1342)] = 56192, - [SMALL_STATE(1343)] = 56221, - [SMALL_STATE(1344)] = 56242, - [SMALL_STATE(1345)] = 56271, - [SMALL_STATE(1346)] = 56292, - [SMALL_STATE(1347)] = 56321, - [SMALL_STATE(1348)] = 56346, - [SMALL_STATE(1349)] = 56362, - [SMALL_STATE(1350)] = 56388, - [SMALL_STATE(1351)] = 56404, - [SMALL_STATE(1352)] = 56430, - [SMALL_STATE(1353)] = 56456, - [SMALL_STATE(1354)] = 56482, - [SMALL_STATE(1355)] = 56508, - [SMALL_STATE(1356)] = 56534, - [SMALL_STATE(1357)] = 56550, - [SMALL_STATE(1358)] = 56572, - [SMALL_STATE(1359)] = 56592, - [SMALL_STATE(1360)] = 56616, - [SMALL_STATE(1361)] = 56632, - [SMALL_STATE(1362)] = 56650, - [SMALL_STATE(1363)] = 56666, - [SMALL_STATE(1364)] = 56682, - [SMALL_STATE(1365)] = 56698, - [SMALL_STATE(1366)] = 56724, - [SMALL_STATE(1367)] = 56750, - [SMALL_STATE(1368)] = 56776, - [SMALL_STATE(1369)] = 56802, - [SMALL_STATE(1370)] = 56822, - [SMALL_STATE(1371)] = 56838, - [SMALL_STATE(1372)] = 56854, - [SMALL_STATE(1373)] = 56880, - [SMALL_STATE(1374)] = 56906, - [SMALL_STATE(1375)] = 56926, - [SMALL_STATE(1376)] = 56943, - [SMALL_STATE(1377)] = 56958, - [SMALL_STATE(1378)] = 56973, - [SMALL_STATE(1379)] = 56988, - [SMALL_STATE(1380)] = 57005, - [SMALL_STATE(1381)] = 57028, - [SMALL_STATE(1382)] = 57047, - [SMALL_STATE(1383)] = 57062, - [SMALL_STATE(1384)] = 57085, - [SMALL_STATE(1385)] = 57100, - [SMALL_STATE(1386)] = 57119, - [SMALL_STATE(1387)] = 57142, - [SMALL_STATE(1388)] = 57159, - [SMALL_STATE(1389)] = 57184, - [SMALL_STATE(1390)] = 57201, - [SMALL_STATE(1391)] = 57216, - [SMALL_STATE(1392)] = 57231, - [SMALL_STATE(1393)] = 57254, - [SMALL_STATE(1394)] = 57269, - [SMALL_STATE(1395)] = 57292, - [SMALL_STATE(1396)] = 57307, - [SMALL_STATE(1397)] = 57330, - [SMALL_STATE(1398)] = 57353, - [SMALL_STATE(1399)] = 57368, - [SMALL_STATE(1400)] = 57382, - [SMALL_STATE(1401)] = 57396, - [SMALL_STATE(1402)] = 57414, - [SMALL_STATE(1403)] = 57428, - [SMALL_STATE(1404)] = 57446, - [SMALL_STATE(1405)] = 57464, - [SMALL_STATE(1406)] = 57478, - [SMALL_STATE(1407)] = 57494, - [SMALL_STATE(1408)] = 57514, - [SMALL_STATE(1409)] = 57534, - [SMALL_STATE(1410)] = 57554, - [SMALL_STATE(1411)] = 57568, - [SMALL_STATE(1412)] = 57588, - [SMALL_STATE(1413)] = 57602, - [SMALL_STATE(1414)] = 57618, - [SMALL_STATE(1415)] = 57638, - [SMALL_STATE(1416)] = 57658, - [SMALL_STATE(1417)] = 57678, - [SMALL_STATE(1418)] = 57698, - [SMALL_STATE(1419)] = 57712, - [SMALL_STATE(1420)] = 57726, - [SMALL_STATE(1421)] = 57740, - [SMALL_STATE(1422)] = 57754, - [SMALL_STATE(1423)] = 57774, - [SMALL_STATE(1424)] = 57792, - [SMALL_STATE(1425)] = 57806, - [SMALL_STATE(1426)] = 57820, - [SMALL_STATE(1427)] = 57834, - [SMALL_STATE(1428)] = 57854, - [SMALL_STATE(1429)] = 57874, - [SMALL_STATE(1430)] = 57894, - [SMALL_STATE(1431)] = 57908, - [SMALL_STATE(1432)] = 57926, - [SMALL_STATE(1433)] = 57946, - [SMALL_STATE(1434)] = 57960, - [SMALL_STATE(1435)] = 57976, - [SMALL_STATE(1436)] = 57994, - [SMALL_STATE(1437)] = 58012, - [SMALL_STATE(1438)] = 58023, - [SMALL_STATE(1439)] = 58034, - [SMALL_STATE(1440)] = 58045, - [SMALL_STATE(1441)] = 58056, - [SMALL_STATE(1442)] = 58067, - [SMALL_STATE(1443)] = 58086, - [SMALL_STATE(1444)] = 58105, - [SMALL_STATE(1445)] = 58122, - [SMALL_STATE(1446)] = 58133, - [SMALL_STATE(1447)] = 58150, - [SMALL_STATE(1448)] = 58161, - [SMALL_STATE(1449)] = 58172, - [SMALL_STATE(1450)] = 58183, - [SMALL_STATE(1451)] = 58202, - [SMALL_STATE(1452)] = 58217, - [SMALL_STATE(1453)] = 58228, - [SMALL_STATE(1454)] = 58239, - [SMALL_STATE(1455)] = 58250, - [SMALL_STATE(1456)] = 58265, - [SMALL_STATE(1457)] = 58276, - [SMALL_STATE(1458)] = 58290, - [SMALL_STATE(1459)] = 58304, - [SMALL_STATE(1460)] = 58318, - [SMALL_STATE(1461)] = 58334, - [SMALL_STATE(1462)] = 58348, - [SMALL_STATE(1463)] = 58364, - [SMALL_STATE(1464)] = 58378, - [SMALL_STATE(1465)] = 58392, - [SMALL_STATE(1466)] = 58408, - [SMALL_STATE(1467)] = 58424, - [SMALL_STATE(1468)] = 58440, - [SMALL_STATE(1469)] = 58456, - [SMALL_STATE(1470)] = 58470, - [SMALL_STATE(1471)] = 58486, - [SMALL_STATE(1472)] = 58496, - [SMALL_STATE(1473)] = 58510, - [SMALL_STATE(1474)] = 58524, - [SMALL_STATE(1475)] = 58538, - [SMALL_STATE(1476)] = 58554, - [SMALL_STATE(1477)] = 58568, - [SMALL_STATE(1478)] = 58584, - [SMALL_STATE(1479)] = 58598, - [SMALL_STATE(1480)] = 58612, - [SMALL_STATE(1481)] = 58626, - [SMALL_STATE(1482)] = 58640, - [SMALL_STATE(1483)] = 58654, - [SMALL_STATE(1484)] = 58668, - [SMALL_STATE(1485)] = 58682, - [SMALL_STATE(1486)] = 58696, - [SMALL_STATE(1487)] = 58712, - [SMALL_STATE(1488)] = 58726, - [SMALL_STATE(1489)] = 58740, - [SMALL_STATE(1490)] = 58754, - [SMALL_STATE(1491)] = 58768, - [SMALL_STATE(1492)] = 58782, - [SMALL_STATE(1493)] = 58796, - [SMALL_STATE(1494)] = 58810, - [SMALL_STATE(1495)] = 58824, - [SMALL_STATE(1496)] = 58838, - [SMALL_STATE(1497)] = 58852, - [SMALL_STATE(1498)] = 58868, - [SMALL_STATE(1499)] = 58878, - [SMALL_STATE(1500)] = 58892, - [SMALL_STATE(1501)] = 58906, - [SMALL_STATE(1502)] = 58920, - [SMALL_STATE(1503)] = 58934, - [SMALL_STATE(1504)] = 58948, - [SMALL_STATE(1505)] = 58964, - [SMALL_STATE(1506)] = 58978, - [SMALL_STATE(1507)] = 58992, - [SMALL_STATE(1508)] = 59006, - [SMALL_STATE(1509)] = 59022, - [SMALL_STATE(1510)] = 59036, - [SMALL_STATE(1511)] = 59052, - [SMALL_STATE(1512)] = 59068, - [SMALL_STATE(1513)] = 59082, - [SMALL_STATE(1514)] = 59096, - [SMALL_STATE(1515)] = 59112, - [SMALL_STATE(1516)] = 59126, - [SMALL_STATE(1517)] = 59142, - [SMALL_STATE(1518)] = 59158, - [SMALL_STATE(1519)] = 59172, - [SMALL_STATE(1520)] = 59188, - [SMALL_STATE(1521)] = 59202, - [SMALL_STATE(1522)] = 59213, - [SMALL_STATE(1523)] = 59222, - [SMALL_STATE(1524)] = 59235, - [SMALL_STATE(1525)] = 59246, - [SMALL_STATE(1526)] = 59259, - [SMALL_STATE(1527)] = 59272, - [SMALL_STATE(1528)] = 59285, - [SMALL_STATE(1529)] = 59298, - [SMALL_STATE(1530)] = 59311, - [SMALL_STATE(1531)] = 59324, - [SMALL_STATE(1532)] = 59337, - [SMALL_STATE(1533)] = 59350, - [SMALL_STATE(1534)] = 59363, - [SMALL_STATE(1535)] = 59376, - [SMALL_STATE(1536)] = 59389, - [SMALL_STATE(1537)] = 59402, - [SMALL_STATE(1538)] = 59415, - [SMALL_STATE(1539)] = 59428, - [SMALL_STATE(1540)] = 59441, - [SMALL_STATE(1541)] = 59454, - [SMALL_STATE(1542)] = 59467, - [SMALL_STATE(1543)] = 59480, - [SMALL_STATE(1544)] = 59493, - [SMALL_STATE(1545)] = 59506, - [SMALL_STATE(1546)] = 59515, - [SMALL_STATE(1547)] = 59528, - [SMALL_STATE(1548)] = 59541, - [SMALL_STATE(1549)] = 59554, - [SMALL_STATE(1550)] = 59567, - [SMALL_STATE(1551)] = 59580, - [SMALL_STATE(1552)] = 59593, - [SMALL_STATE(1553)] = 59606, - [SMALL_STATE(1554)] = 59619, - [SMALL_STATE(1555)] = 59632, - [SMALL_STATE(1556)] = 59645, - [SMALL_STATE(1557)] = 59658, - [SMALL_STATE(1558)] = 59671, - [SMALL_STATE(1559)] = 59680, - [SMALL_STATE(1560)] = 59689, - [SMALL_STATE(1561)] = 59702, - [SMALL_STATE(1562)] = 59715, - [SMALL_STATE(1563)] = 59728, - [SMALL_STATE(1564)] = 59741, - [SMALL_STATE(1565)] = 59754, - [SMALL_STATE(1566)] = 59767, - [SMALL_STATE(1567)] = 59780, - [SMALL_STATE(1568)] = 59793, - [SMALL_STATE(1569)] = 59806, - [SMALL_STATE(1570)] = 59815, - [SMALL_STATE(1571)] = 59828, - [SMALL_STATE(1572)] = 59841, - [SMALL_STATE(1573)] = 59854, - [SMALL_STATE(1574)] = 59867, - [SMALL_STATE(1575)] = 59880, - [SMALL_STATE(1576)] = 59893, - [SMALL_STATE(1577)] = 59906, - [SMALL_STATE(1578)] = 59919, - [SMALL_STATE(1579)] = 59930, - [SMALL_STATE(1580)] = 59943, - [SMALL_STATE(1581)] = 59956, - [SMALL_STATE(1582)] = 59969, - [SMALL_STATE(1583)] = 59982, - [SMALL_STATE(1584)] = 59995, - [SMALL_STATE(1585)] = 60008, - [SMALL_STATE(1586)] = 60021, - [SMALL_STATE(1587)] = 60034, - [SMALL_STATE(1588)] = 60047, - [SMALL_STATE(1589)] = 60060, - [SMALL_STATE(1590)] = 60073, - [SMALL_STATE(1591)] = 60086, - [SMALL_STATE(1592)] = 60099, - [SMALL_STATE(1593)] = 60112, - [SMALL_STATE(1594)] = 60125, - [SMALL_STATE(1595)] = 60138, - [SMALL_STATE(1596)] = 60151, - [SMALL_STATE(1597)] = 60164, - [SMALL_STATE(1598)] = 60177, - [SMALL_STATE(1599)] = 60190, - [SMALL_STATE(1600)] = 60203, - [SMALL_STATE(1601)] = 60216, - [SMALL_STATE(1602)] = 60229, - [SMALL_STATE(1603)] = 60242, - [SMALL_STATE(1604)] = 60255, - [SMALL_STATE(1605)] = 60268, - [SMALL_STATE(1606)] = 60281, - [SMALL_STATE(1607)] = 60294, - [SMALL_STATE(1608)] = 60305, - [SMALL_STATE(1609)] = 60314, - [SMALL_STATE(1610)] = 60327, - [SMALL_STATE(1611)] = 60340, - [SMALL_STATE(1612)] = 60353, - [SMALL_STATE(1613)] = 60366, - [SMALL_STATE(1614)] = 60379, - [SMALL_STATE(1615)] = 60392, - [SMALL_STATE(1616)] = 60405, - [SMALL_STATE(1617)] = 60418, - [SMALL_STATE(1618)] = 60431, - [SMALL_STATE(1619)] = 60444, - [SMALL_STATE(1620)] = 60457, - [SMALL_STATE(1621)] = 60466, - [SMALL_STATE(1622)] = 60479, - [SMALL_STATE(1623)] = 60492, - [SMALL_STATE(1624)] = 60505, - [SMALL_STATE(1625)] = 60518, - [SMALL_STATE(1626)] = 60531, - [SMALL_STATE(1627)] = 60544, - [SMALL_STATE(1628)] = 60557, - [SMALL_STATE(1629)] = 60570, - [SMALL_STATE(1630)] = 60583, - [SMALL_STATE(1631)] = 60596, - [SMALL_STATE(1632)] = 60605, - [SMALL_STATE(1633)] = 60618, - [SMALL_STATE(1634)] = 60631, - [SMALL_STATE(1635)] = 60640, - [SMALL_STATE(1636)] = 60653, - [SMALL_STATE(1637)] = 60666, - [SMALL_STATE(1638)] = 60675, - [SMALL_STATE(1639)] = 60684, - [SMALL_STATE(1640)] = 60693, - [SMALL_STATE(1641)] = 60706, - [SMALL_STATE(1642)] = 60717, - [SMALL_STATE(1643)] = 60730, - [SMALL_STATE(1644)] = 60740, - [SMALL_STATE(1645)] = 60750, - [SMALL_STATE(1646)] = 60760, - [SMALL_STATE(1647)] = 60768, - [SMALL_STATE(1648)] = 60778, - [SMALL_STATE(1649)] = 60788, - [SMALL_STATE(1650)] = 60798, - [SMALL_STATE(1651)] = 60808, - [SMALL_STATE(1652)] = 60816, - [SMALL_STATE(1653)] = 60826, - [SMALL_STATE(1654)] = 60836, - [SMALL_STATE(1655)] = 60846, - [SMALL_STATE(1656)] = 60856, - [SMALL_STATE(1657)] = 60866, - [SMALL_STATE(1658)] = 60876, - [SMALL_STATE(1659)] = 60886, - [SMALL_STATE(1660)] = 60896, - [SMALL_STATE(1661)] = 60906, - [SMALL_STATE(1662)] = 60916, - [SMALL_STATE(1663)] = 60924, - [SMALL_STATE(1664)] = 60934, - [SMALL_STATE(1665)] = 60942, - [SMALL_STATE(1666)] = 60952, - [SMALL_STATE(1667)] = 60962, - [SMALL_STATE(1668)] = 60972, - [SMALL_STATE(1669)] = 60982, - [SMALL_STATE(1670)] = 60992, - [SMALL_STATE(1671)] = 61002, - [SMALL_STATE(1672)] = 61012, - [SMALL_STATE(1673)] = 61022, - [SMALL_STATE(1674)] = 61032, - [SMALL_STATE(1675)] = 61042, - [SMALL_STATE(1676)] = 61052, - [SMALL_STATE(1677)] = 61062, - [SMALL_STATE(1678)] = 61072, - [SMALL_STATE(1679)] = 61082, - [SMALL_STATE(1680)] = 61092, - [SMALL_STATE(1681)] = 61102, - [SMALL_STATE(1682)] = 61112, - [SMALL_STATE(1683)] = 61122, - [SMALL_STATE(1684)] = 61130, - [SMALL_STATE(1685)] = 61138, - [SMALL_STATE(1686)] = 61146, - [SMALL_STATE(1687)] = 61154, - [SMALL_STATE(1688)] = 61164, - [SMALL_STATE(1689)] = 61174, - [SMALL_STATE(1690)] = 61184, - [SMALL_STATE(1691)] = 61194, - [SMALL_STATE(1692)] = 61204, - [SMALL_STATE(1693)] = 61214, - [SMALL_STATE(1694)] = 61224, - [SMALL_STATE(1695)] = 61232, - [SMALL_STATE(1696)] = 61242, - [SMALL_STATE(1697)] = 61252, - [SMALL_STATE(1698)] = 61262, - [SMALL_STATE(1699)] = 61270, - [SMALL_STATE(1700)] = 61280, - [SMALL_STATE(1701)] = 61290, - [SMALL_STATE(1702)] = 61300, - [SMALL_STATE(1703)] = 61308, - [SMALL_STATE(1704)] = 61318, - [SMALL_STATE(1705)] = 61328, - [SMALL_STATE(1706)] = 61338, - [SMALL_STATE(1707)] = 61346, - [SMALL_STATE(1708)] = 61354, - [SMALL_STATE(1709)] = 61364, - [SMALL_STATE(1710)] = 61374, - [SMALL_STATE(1711)] = 61384, - [SMALL_STATE(1712)] = 61394, - [SMALL_STATE(1713)] = 61404, - [SMALL_STATE(1714)] = 61414, - [SMALL_STATE(1715)] = 61422, - [SMALL_STATE(1716)] = 61432, - [SMALL_STATE(1717)] = 61442, - [SMALL_STATE(1718)] = 61452, - [SMALL_STATE(1719)] = 61462, - [SMALL_STATE(1720)] = 61472, - [SMALL_STATE(1721)] = 61482, - [SMALL_STATE(1722)] = 61490, - [SMALL_STATE(1723)] = 61498, - [SMALL_STATE(1724)] = 61508, - [SMALL_STATE(1725)] = 61518, - [SMALL_STATE(1726)] = 61528, - [SMALL_STATE(1727)] = 61538, - [SMALL_STATE(1728)] = 61546, - [SMALL_STATE(1729)] = 61554, - [SMALL_STATE(1730)] = 61564, - [SMALL_STATE(1731)] = 61574, - [SMALL_STATE(1732)] = 61581, - [SMALL_STATE(1733)] = 61588, - [SMALL_STATE(1734)] = 61595, - [SMALL_STATE(1735)] = 61602, - [SMALL_STATE(1736)] = 61609, - [SMALL_STATE(1737)] = 61616, - [SMALL_STATE(1738)] = 61623, - [SMALL_STATE(1739)] = 61630, - [SMALL_STATE(1740)] = 61637, - [SMALL_STATE(1741)] = 61644, - [SMALL_STATE(1742)] = 61651, - [SMALL_STATE(1743)] = 61658, - [SMALL_STATE(1744)] = 61665, - [SMALL_STATE(1745)] = 61672, - [SMALL_STATE(1746)] = 61679, - [SMALL_STATE(1747)] = 61686, - [SMALL_STATE(1748)] = 61693, - [SMALL_STATE(1749)] = 61700, - [SMALL_STATE(1750)] = 61707, - [SMALL_STATE(1751)] = 61714, - [SMALL_STATE(1752)] = 61721, - [SMALL_STATE(1753)] = 61728, - [SMALL_STATE(1754)] = 61735, - [SMALL_STATE(1755)] = 61742, - [SMALL_STATE(1756)] = 61749, - [SMALL_STATE(1757)] = 61756, - [SMALL_STATE(1758)] = 61763, - [SMALL_STATE(1759)] = 61770, - [SMALL_STATE(1760)] = 61777, - [SMALL_STATE(1761)] = 61784, - [SMALL_STATE(1762)] = 61791, - [SMALL_STATE(1763)] = 61798, - [SMALL_STATE(1764)] = 61805, - [SMALL_STATE(1765)] = 61812, - [SMALL_STATE(1766)] = 61819, - [SMALL_STATE(1767)] = 61826, - [SMALL_STATE(1768)] = 61833, - [SMALL_STATE(1769)] = 61840, - [SMALL_STATE(1770)] = 61847, - [SMALL_STATE(1771)] = 61854, - [SMALL_STATE(1772)] = 61861, - [SMALL_STATE(1773)] = 61868, - [SMALL_STATE(1774)] = 61875, - [SMALL_STATE(1775)] = 61882, - [SMALL_STATE(1776)] = 61889, - [SMALL_STATE(1777)] = 61896, - [SMALL_STATE(1778)] = 61903, - [SMALL_STATE(1779)] = 61910, - [SMALL_STATE(1780)] = 61917, - [SMALL_STATE(1781)] = 61924, - [SMALL_STATE(1782)] = 61931, - [SMALL_STATE(1783)] = 61938, - [SMALL_STATE(1784)] = 61945, - [SMALL_STATE(1785)] = 61952, - [SMALL_STATE(1786)] = 61959, - [SMALL_STATE(1787)] = 61966, - [SMALL_STATE(1788)] = 61973, - [SMALL_STATE(1789)] = 61980, - [SMALL_STATE(1790)] = 61987, - [SMALL_STATE(1791)] = 61994, - [SMALL_STATE(1792)] = 62001, - [SMALL_STATE(1793)] = 62008, - [SMALL_STATE(1794)] = 62015, - [SMALL_STATE(1795)] = 62022, - [SMALL_STATE(1796)] = 62029, - [SMALL_STATE(1797)] = 62036, - [SMALL_STATE(1798)] = 62043, - [SMALL_STATE(1799)] = 62050, - [SMALL_STATE(1800)] = 62057, - [SMALL_STATE(1801)] = 62064, - [SMALL_STATE(1802)] = 62071, - [SMALL_STATE(1803)] = 62078, - [SMALL_STATE(1804)] = 62085, - [SMALL_STATE(1805)] = 62092, - [SMALL_STATE(1806)] = 62099, - [SMALL_STATE(1807)] = 62106, - [SMALL_STATE(1808)] = 62113, - [SMALL_STATE(1809)] = 62120, - [SMALL_STATE(1810)] = 62127, - [SMALL_STATE(1811)] = 62134, - [SMALL_STATE(1812)] = 62141, - [SMALL_STATE(1813)] = 62148, - [SMALL_STATE(1814)] = 62155, - [SMALL_STATE(1815)] = 62162, - [SMALL_STATE(1816)] = 62169, - [SMALL_STATE(1817)] = 62176, - [SMALL_STATE(1818)] = 62183, - [SMALL_STATE(1819)] = 62190, - [SMALL_STATE(1820)] = 62197, - [SMALL_STATE(1821)] = 62204, - [SMALL_STATE(1822)] = 62211, - [SMALL_STATE(1823)] = 62218, - [SMALL_STATE(1824)] = 62225, - [SMALL_STATE(1825)] = 62232, - [SMALL_STATE(1826)] = 62239, - [SMALL_STATE(1827)] = 62246, - [SMALL_STATE(1828)] = 62253, - [SMALL_STATE(1829)] = 62260, - [SMALL_STATE(1830)] = 62267, - [SMALL_STATE(1831)] = 62274, - [SMALL_STATE(1832)] = 62281, - [SMALL_STATE(1833)] = 62288, - [SMALL_STATE(1834)] = 62295, - [SMALL_STATE(1835)] = 62302, - [SMALL_STATE(1836)] = 62309, - [SMALL_STATE(1837)] = 62316, - [SMALL_STATE(1838)] = 62323, - [SMALL_STATE(1839)] = 62330, - [SMALL_STATE(1840)] = 62337, - [SMALL_STATE(1841)] = 62344, - [SMALL_STATE(1842)] = 62351, - [SMALL_STATE(1843)] = 62358, - [SMALL_STATE(1844)] = 62365, - [SMALL_STATE(1845)] = 62372, - [SMALL_STATE(1846)] = 62379, - [SMALL_STATE(1847)] = 62386, - [SMALL_STATE(1848)] = 62393, - [SMALL_STATE(1849)] = 62400, - [SMALL_STATE(1850)] = 62407, - [SMALL_STATE(1851)] = 62414, - [SMALL_STATE(1852)] = 62421, - [SMALL_STATE(1853)] = 62428, - [SMALL_STATE(1854)] = 62435, - [SMALL_STATE(1855)] = 62442, - [SMALL_STATE(1856)] = 62449, - [SMALL_STATE(1857)] = 62456, - [SMALL_STATE(1858)] = 62463, - [SMALL_STATE(1859)] = 62470, - [SMALL_STATE(1860)] = 62477, - [SMALL_STATE(1861)] = 62484, - [SMALL_STATE(1862)] = 62491, - [SMALL_STATE(1863)] = 62498, - [SMALL_STATE(1864)] = 62505, - [SMALL_STATE(1865)] = 62512, - [SMALL_STATE(1866)] = 62519, - [SMALL_STATE(1867)] = 62526, - [SMALL_STATE(1868)] = 62533, - [SMALL_STATE(1869)] = 62540, - [SMALL_STATE(1870)] = 62547, - [SMALL_STATE(1871)] = 62554, - [SMALL_STATE(1872)] = 62561, - [SMALL_STATE(1873)] = 62568, - [SMALL_STATE(1874)] = 62575, - [SMALL_STATE(1875)] = 62582, - [SMALL_STATE(1876)] = 62589, - [SMALL_STATE(1877)] = 62596, - [SMALL_STATE(1878)] = 62603, - [SMALL_STATE(1879)] = 62610, - [SMALL_STATE(1880)] = 62617, - [SMALL_STATE(1881)] = 62624, - [SMALL_STATE(1882)] = 62631, - [SMALL_STATE(1883)] = 62638, - [SMALL_STATE(1884)] = 62645, - [SMALL_STATE(1885)] = 62652, - [SMALL_STATE(1886)] = 62659, - [SMALL_STATE(1887)] = 62666, - [SMALL_STATE(1888)] = 62673, - [SMALL_STATE(1889)] = 62680, - [SMALL_STATE(1890)] = 62687, - [SMALL_STATE(1891)] = 62694, - [SMALL_STATE(1892)] = 62701, - [SMALL_STATE(1893)] = 62708, - [SMALL_STATE(1894)] = 62715, - [SMALL_STATE(1895)] = 62722, - [SMALL_STATE(1896)] = 62729, - [SMALL_STATE(1897)] = 62736, - [SMALL_STATE(1898)] = 62743, - [SMALL_STATE(1899)] = 62750, - [SMALL_STATE(1900)] = 62757, - [SMALL_STATE(1901)] = 62764, - [SMALL_STATE(1902)] = 62771, - [SMALL_STATE(1903)] = 62778, - [SMALL_STATE(1904)] = 62785, - [SMALL_STATE(1905)] = 62792, - [SMALL_STATE(1906)] = 62799, - [SMALL_STATE(1907)] = 62806, - [SMALL_STATE(1908)] = 62813, - [SMALL_STATE(1909)] = 62820, - [SMALL_STATE(1910)] = 62827, - [SMALL_STATE(1911)] = 62834, - [SMALL_STATE(1912)] = 62841, - [SMALL_STATE(1913)] = 62848, - [SMALL_STATE(1914)] = 62855, - [SMALL_STATE(1915)] = 62862, - [SMALL_STATE(1916)] = 62869, - [SMALL_STATE(1917)] = 62876, - [SMALL_STATE(1918)] = 62883, - [SMALL_STATE(1919)] = 62890, - [SMALL_STATE(1920)] = 62897, - [SMALL_STATE(1921)] = 62904, - [SMALL_STATE(1922)] = 62911, - [SMALL_STATE(1923)] = 62918, - [SMALL_STATE(1924)] = 62925, - [SMALL_STATE(1925)] = 62932, - [SMALL_STATE(1926)] = 62939, - [SMALL_STATE(1927)] = 62946, - [SMALL_STATE(1928)] = 62953, - [SMALL_STATE(1929)] = 62960, - [SMALL_STATE(1930)] = 62967, - [SMALL_STATE(1931)] = 62974, - [SMALL_STATE(1932)] = 62981, - [SMALL_STATE(1933)] = 62988, - [SMALL_STATE(1934)] = 62995, - [SMALL_STATE(1935)] = 63002, - [SMALL_STATE(1936)] = 63009, - [SMALL_STATE(1937)] = 63016, - [SMALL_STATE(1938)] = 63023, - [SMALL_STATE(1939)] = 63030, - [SMALL_STATE(1940)] = 63037, - [SMALL_STATE(1941)] = 63044, - [SMALL_STATE(1942)] = 63051, - [SMALL_STATE(1943)] = 63058, - [SMALL_STATE(1944)] = 63065, - [SMALL_STATE(1945)] = 63072, - [SMALL_STATE(1946)] = 63079, - [SMALL_STATE(1947)] = 63086, - [SMALL_STATE(1948)] = 63093, - [SMALL_STATE(1949)] = 63100, - [SMALL_STATE(1950)] = 63107, - [SMALL_STATE(1951)] = 63114, - [SMALL_STATE(1952)] = 63121, - [SMALL_STATE(1953)] = 63128, - [SMALL_STATE(1954)] = 63135, - [SMALL_STATE(1955)] = 63142, - [SMALL_STATE(1956)] = 63149, - [SMALL_STATE(1957)] = 63156, - [SMALL_STATE(1958)] = 63163, - [SMALL_STATE(1959)] = 63170, - [SMALL_STATE(1960)] = 63177, - [SMALL_STATE(1961)] = 63184, - [SMALL_STATE(1962)] = 63191, - [SMALL_STATE(1963)] = 63198, - [SMALL_STATE(1964)] = 63205, - [SMALL_STATE(1965)] = 63212, - [SMALL_STATE(1966)] = 63219, - [SMALL_STATE(1967)] = 63226, - [SMALL_STATE(1968)] = 63233, - [SMALL_STATE(1969)] = 63240, - [SMALL_STATE(1970)] = 63247, - [SMALL_STATE(1971)] = 63254, - [SMALL_STATE(1972)] = 63261, - [SMALL_STATE(1973)] = 63268, - [SMALL_STATE(1974)] = 63275, - [SMALL_STATE(1975)] = 63282, - [SMALL_STATE(1976)] = 63289, - [SMALL_STATE(1977)] = 63296, - [SMALL_STATE(1978)] = 63303, - [SMALL_STATE(1979)] = 63310, - [SMALL_STATE(1980)] = 63317, + [SMALL_STATE(452)] = 0, + [SMALL_STATE(453)] = 114, + [SMALL_STATE(454)] = 228, + [SMALL_STATE(455)] = 339, + [SMALL_STATE(456)] = 448, + [SMALL_STATE(457)] = 557, + [SMALL_STATE(458)] = 666, + [SMALL_STATE(459)] = 775, + [SMALL_STATE(460)] = 866, + [SMALL_STATE(461)] = 974, + [SMALL_STATE(462)] = 1082, + [SMALL_STATE(463)] = 1190, + [SMALL_STATE(464)] = 1298, + [SMALL_STATE(465)] = 1406, + [SMALL_STATE(466)] = 1514, + [SMALL_STATE(467)] = 1622, + [SMALL_STATE(468)] = 1730, + [SMALL_STATE(469)] = 1838, + [SMALL_STATE(470)] = 1946, + [SMALL_STATE(471)] = 2054, + [SMALL_STATE(472)] = 2162, + [SMALL_STATE(473)] = 2270, + [SMALL_STATE(474)] = 2378, + [SMALL_STATE(475)] = 2486, + [SMALL_STATE(476)] = 2594, + [SMALL_STATE(477)] = 2702, + [SMALL_STATE(478)] = 2810, + [SMALL_STATE(479)] = 2918, + [SMALL_STATE(480)] = 3026, + [SMALL_STATE(481)] = 3134, + [SMALL_STATE(482)] = 3242, + [SMALL_STATE(483)] = 3350, + [SMALL_STATE(484)] = 3458, + [SMALL_STATE(485)] = 3566, + [SMALL_STATE(486)] = 3674, + [SMALL_STATE(487)] = 3782, + [SMALL_STATE(488)] = 3890, + [SMALL_STATE(489)] = 3995, + [SMALL_STATE(490)] = 4100, + [SMALL_STATE(491)] = 4205, + [SMALL_STATE(492)] = 4310, + [SMALL_STATE(493)] = 4415, + [SMALL_STATE(494)] = 4520, + [SMALL_STATE(495)] = 4625, + [SMALL_STATE(496)] = 4730, + [SMALL_STATE(497)] = 4835, + [SMALL_STATE(498)] = 4940, + [SMALL_STATE(499)] = 5045, + [SMALL_STATE(500)] = 5150, + [SMALL_STATE(501)] = 5255, + [SMALL_STATE(502)] = 5357, + [SMALL_STATE(503)] = 5459, + [SMALL_STATE(504)] = 5561, + [SMALL_STATE(505)] = 5663, + [SMALL_STATE(506)] = 5765, + [SMALL_STATE(507)] = 5867, + [SMALL_STATE(508)] = 5969, + [SMALL_STATE(509)] = 6071, + [SMALL_STATE(510)] = 6173, + [SMALL_STATE(511)] = 6275, + [SMALL_STATE(512)] = 6377, + [SMALL_STATE(513)] = 6479, + [SMALL_STATE(514)] = 6581, + [SMALL_STATE(515)] = 6683, + [SMALL_STATE(516)] = 6785, + [SMALL_STATE(517)] = 6887, + [SMALL_STATE(518)] = 6989, + [SMALL_STATE(519)] = 7091, + [SMALL_STATE(520)] = 7193, + [SMALL_STATE(521)] = 7295, + [SMALL_STATE(522)] = 7397, + [SMALL_STATE(523)] = 7499, + [SMALL_STATE(524)] = 7601, + [SMALL_STATE(525)] = 7703, + [SMALL_STATE(526)] = 7805, + [SMALL_STATE(527)] = 7907, + [SMALL_STATE(528)] = 8009, + [SMALL_STATE(529)] = 8111, + [SMALL_STATE(530)] = 8213, + [SMALL_STATE(531)] = 8315, + [SMALL_STATE(532)] = 8417, + [SMALL_STATE(533)] = 8519, + [SMALL_STATE(534)] = 8621, + [SMALL_STATE(535)] = 8723, + [SMALL_STATE(536)] = 8825, + [SMALL_STATE(537)] = 8927, + [SMALL_STATE(538)] = 9029, + [SMALL_STATE(539)] = 9131, + [SMALL_STATE(540)] = 9233, + [SMALL_STATE(541)] = 9335, + [SMALL_STATE(542)] = 9437, + [SMALL_STATE(543)] = 9539, + [SMALL_STATE(544)] = 9641, + [SMALL_STATE(545)] = 9743, + [SMALL_STATE(546)] = 9845, + [SMALL_STATE(547)] = 9947, + [SMALL_STATE(548)] = 10049, + [SMALL_STATE(549)] = 10151, + [SMALL_STATE(550)] = 10253, + [SMALL_STATE(551)] = 10355, + [SMALL_STATE(552)] = 10457, + [SMALL_STATE(553)] = 10559, + [SMALL_STATE(554)] = 10661, + [SMALL_STATE(555)] = 10763, + [SMALL_STATE(556)] = 10865, + [SMALL_STATE(557)] = 10967, + [SMALL_STATE(558)] = 11069, + [SMALL_STATE(559)] = 11171, + [SMALL_STATE(560)] = 11273, + [SMALL_STATE(561)] = 11375, + [SMALL_STATE(562)] = 11477, + [SMALL_STATE(563)] = 11579, + [SMALL_STATE(564)] = 11681, + [SMALL_STATE(565)] = 11783, + [SMALL_STATE(566)] = 11885, + [SMALL_STATE(567)] = 11987, + [SMALL_STATE(568)] = 12089, + [SMALL_STATE(569)] = 12191, + [SMALL_STATE(570)] = 12293, + [SMALL_STATE(571)] = 12395, + [SMALL_STATE(572)] = 12497, + [SMALL_STATE(573)] = 12599, + [SMALL_STATE(574)] = 12701, + [SMALL_STATE(575)] = 12803, + [SMALL_STATE(576)] = 12905, + [SMALL_STATE(577)] = 13007, + [SMALL_STATE(578)] = 13109, + [SMALL_STATE(579)] = 13211, + [SMALL_STATE(580)] = 13313, + [SMALL_STATE(581)] = 13415, + [SMALL_STATE(582)] = 13517, + [SMALL_STATE(583)] = 13619, + [SMALL_STATE(584)] = 13721, + [SMALL_STATE(585)] = 13823, + [SMALL_STATE(586)] = 13925, + [SMALL_STATE(587)] = 14027, + [SMALL_STATE(588)] = 14129, + [SMALL_STATE(589)] = 14231, + [SMALL_STATE(590)] = 14333, + [SMALL_STATE(591)] = 14435, + [SMALL_STATE(592)] = 14537, + [SMALL_STATE(593)] = 14639, + [SMALL_STATE(594)] = 14741, + [SMALL_STATE(595)] = 14843, + [SMALL_STATE(596)] = 14945, + [SMALL_STATE(597)] = 15047, + [SMALL_STATE(598)] = 15149, + [SMALL_STATE(599)] = 15251, + [SMALL_STATE(600)] = 15353, + [SMALL_STATE(601)] = 15455, + [SMALL_STATE(602)] = 15557, + [SMALL_STATE(603)] = 15659, + [SMALL_STATE(604)] = 15761, + [SMALL_STATE(605)] = 15863, + [SMALL_STATE(606)] = 15965, + [SMALL_STATE(607)] = 16067, + [SMALL_STATE(608)] = 16169, + [SMALL_STATE(609)] = 16271, + [SMALL_STATE(610)] = 16373, + [SMALL_STATE(611)] = 16475, + [SMALL_STATE(612)] = 16577, + [SMALL_STATE(613)] = 16679, + [SMALL_STATE(614)] = 16781, + [SMALL_STATE(615)] = 16883, + [SMALL_STATE(616)] = 16985, + [SMALL_STATE(617)] = 17056, + [SMALL_STATE(618)] = 17127, + [SMALL_STATE(619)] = 17198, + [SMALL_STATE(620)] = 17266, + [SMALL_STATE(621)] = 17345, + [SMALL_STATE(622)] = 17408, + [SMALL_STATE(623)] = 17471, + [SMALL_STATE(624)] = 17533, + [SMALL_STATE(625)] = 17595, + [SMALL_STATE(626)] = 17695, + [SMALL_STATE(627)] = 17795, + [SMALL_STATE(628)] = 17895, + [SMALL_STATE(629)] = 17995, + [SMALL_STATE(630)] = 18095, + [SMALL_STATE(631)] = 18195, + [SMALL_STATE(632)] = 18295, + [SMALL_STATE(633)] = 18395, + [SMALL_STATE(634)] = 18495, + [SMALL_STATE(635)] = 18557, + [SMALL_STATE(636)] = 18657, + [SMALL_STATE(637)] = 18757, + [SMALL_STATE(638)] = 18857, + [SMALL_STATE(639)] = 18959, + [SMALL_STATE(640)] = 19059, + [SMALL_STATE(641)] = 19159, + [SMALL_STATE(642)] = 19259, + [SMALL_STATE(643)] = 19321, + [SMALL_STATE(644)] = 19383, + [SMALL_STATE(645)] = 19445, + [SMALL_STATE(646)] = 19545, + [SMALL_STATE(647)] = 19607, + [SMALL_STATE(648)] = 19669, + [SMALL_STATE(649)] = 19731, + [SMALL_STATE(650)] = 19793, + [SMALL_STATE(651)] = 19893, + [SMALL_STATE(652)] = 19992, + [SMALL_STATE(653)] = 20089, + [SMALL_STATE(654)] = 20186, + [SMALL_STATE(655)] = 20246, + [SMALL_STATE(656)] = 20316, + [SMALL_STATE(657)] = 20375, + [SMALL_STATE(658)] = 20434, + [SMALL_STATE(659)] = 20493, + [SMALL_STATE(660)] = 20552, + [SMALL_STATE(661)] = 20617, + [SMALL_STATE(662)] = 20707, + [SMALL_STATE(663)] = 20797, + [SMALL_STATE(664)] = 20855, + [SMALL_STATE(665)] = 20913, + [SMALL_STATE(666)] = 20971, + [SMALL_STATE(667)] = 21029, + [SMALL_STATE(668)] = 21087, + [SMALL_STATE(669)] = 21145, + [SMALL_STATE(670)] = 21203, + [SMALL_STATE(671)] = 21293, + [SMALL_STATE(672)] = 21351, + [SMALL_STATE(673)] = 21409, + [SMALL_STATE(674)] = 21467, + [SMALL_STATE(675)] = 21525, + [SMALL_STATE(676)] = 21583, + [SMALL_STATE(677)] = 21641, + [SMALL_STATE(678)] = 21699, + [SMALL_STATE(679)] = 21757, + [SMALL_STATE(680)] = 21847, + [SMALL_STATE(681)] = 21905, + [SMALL_STATE(682)] = 21995, + [SMALL_STATE(683)] = 22085, + [SMALL_STATE(684)] = 22175, + [SMALL_STATE(685)] = 22265, + [SMALL_STATE(686)] = 22323, + [SMALL_STATE(687)] = 22380, + [SMALL_STATE(688)] = 22447, + [SMALL_STATE(689)] = 22504, + [SMALL_STATE(690)] = 22571, + [SMALL_STATE(691)] = 22638, + [SMALL_STATE(692)] = 22703, + [SMALL_STATE(693)] = 22760, + [SMALL_STATE(694)] = 22827, + [SMALL_STATE(695)] = 22884, + [SMALL_STATE(696)] = 22949, + [SMALL_STATE(697)] = 23006, + [SMALL_STATE(698)] = 23063, + [SMALL_STATE(699)] = 23150, + [SMALL_STATE(700)] = 23217, + [SMALL_STATE(701)] = 23278, + [SMALL_STATE(702)] = 23342, + [SMALL_STATE(703)] = 23406, + [SMALL_STATE(704)] = 23462, + [SMALL_STATE(705)] = 23518, + [SMALL_STATE(706)] = 23582, + [SMALL_STATE(707)] = 23646, + [SMALL_STATE(708)] = 23710, + [SMALL_STATE(709)] = 23774, + [SMALL_STATE(710)] = 23830, + [SMALL_STATE(711)] = 23901, + [SMALL_STATE(712)] = 23956, + [SMALL_STATE(713)] = 24011, + [SMALL_STATE(714)] = 24082, + [SMALL_STATE(715)] = 24137, + [SMALL_STATE(716)] = 24208, + [SMALL_STATE(717)] = 24279, + [SMALL_STATE(718)] = 24337, + [SMALL_STATE(719)] = 24395, + [SMALL_STATE(720)] = 24453, + [SMALL_STATE(721)] = 24511, + [SMALL_STATE(722)] = 24569, + [SMALL_STATE(723)] = 24627, + [SMALL_STATE(724)] = 24685, + [SMALL_STATE(725)] = 24743, + [SMALL_STATE(726)] = 24801, + [SMALL_STATE(727)] = 24859, + [SMALL_STATE(728)] = 24917, + [SMALL_STATE(729)] = 24970, + [SMALL_STATE(730)] = 25023, + [SMALL_STATE(731)] = 25080, + [SMALL_STATE(732)] = 25139, + [SMALL_STATE(733)] = 25192, + [SMALL_STATE(734)] = 25255, + [SMALL_STATE(735)] = 25308, + [SMALL_STATE(736)] = 25365, + [SMALL_STATE(737)] = 25418, + [SMALL_STATE(738)] = 25471, + [SMALL_STATE(739)] = 25524, + [SMALL_STATE(740)] = 25577, + [SMALL_STATE(741)] = 25630, + [SMALL_STATE(742)] = 25683, + [SMALL_STATE(743)] = 25736, + [SMALL_STATE(744)] = 25789, + [SMALL_STATE(745)] = 25842, + [SMALL_STATE(746)] = 25895, + [SMALL_STATE(747)] = 25948, + [SMALL_STATE(748)] = 26007, + [SMALL_STATE(749)] = 26060, + [SMALL_STATE(750)] = 26113, + [SMALL_STATE(751)] = 26176, + [SMALL_STATE(752)] = 26229, + [SMALL_STATE(753)] = 26282, + [SMALL_STATE(754)] = 26335, + [SMALL_STATE(755)] = 26392, + [SMALL_STATE(756)] = 26445, + [SMALL_STATE(757)] = 26502, + [SMALL_STATE(758)] = 26565, + [SMALL_STATE(759)] = 26622, + [SMALL_STATE(760)] = 26679, + [SMALL_STATE(761)] = 26742, + [SMALL_STATE(762)] = 26805, + [SMALL_STATE(763)] = 26866, + [SMALL_STATE(764)] = 26929, + [SMALL_STATE(765)] = 26982, + [SMALL_STATE(766)] = 27035, + [SMALL_STATE(767)] = 27088, + [SMALL_STATE(768)] = 27145, + [SMALL_STATE(769)] = 27198, + [SMALL_STATE(770)] = 27251, + [SMALL_STATE(771)] = 27304, + [SMALL_STATE(772)] = 27374, + [SMALL_STATE(773)] = 27426, + [SMALL_STATE(774)] = 27478, + [SMALL_STATE(775)] = 27530, + [SMALL_STATE(776)] = 27582, + [SMALL_STATE(777)] = 27634, + [SMALL_STATE(778)] = 27686, + [SMALL_STATE(779)] = 27738, + [SMALL_STATE(780)] = 27790, + [SMALL_STATE(781)] = 27860, + [SMALL_STATE(782)] = 27912, + [SMALL_STATE(783)] = 27998, + [SMALL_STATE(784)] = 28062, + [SMALL_STATE(785)] = 28144, + [SMALL_STATE(786)] = 28224, + [SMALL_STATE(787)] = 28302, + [SMALL_STATE(788)] = 28378, + [SMALL_STATE(789)] = 28452, + [SMALL_STATE(790)] = 28524, + [SMALL_STATE(791)] = 28592, + [SMALL_STATE(792)] = 28658, + [SMALL_STATE(793)] = 28744, + [SMALL_STATE(794)] = 28830, + [SMALL_STATE(795)] = 28882, + [SMALL_STATE(796)] = 28934, + [SMALL_STATE(797)] = 29004, + [SMALL_STATE(798)] = 29056, + [SMALL_STATE(799)] = 29108, + [SMALL_STATE(800)] = 29160, + [SMALL_STATE(801)] = 29212, + [SMALL_STATE(802)] = 29264, + [SMALL_STATE(803)] = 29316, + [SMALL_STATE(804)] = 29376, + [SMALL_STATE(805)] = 29428, + [SMALL_STATE(806)] = 29498, + [SMALL_STATE(807)] = 29559, + [SMALL_STATE(808)] = 29624, + [SMALL_STATE(809)] = 29709, + [SMALL_STATE(810)] = 29764, + [SMALL_STATE(811)] = 29849, + [SMALL_STATE(812)] = 29912, + [SMALL_STATE(813)] = 29993, + [SMALL_STATE(814)] = 30078, + [SMALL_STATE(815)] = 30157, + [SMALL_STATE(816)] = 30224, + [SMALL_STATE(817)] = 30301, + [SMALL_STATE(818)] = 30376, + [SMALL_STATE(819)] = 30449, + [SMALL_STATE(820)] = 30520, + [SMALL_STATE(821)] = 30607, + [SMALL_STATE(822)] = 30694, + [SMALL_STATE(823)] = 30750, + [SMALL_STATE(824)] = 30806, + [SMALL_STATE(825)] = 30860, + [SMALL_STATE(826)] = 30918, + [SMALL_STATE(827)] = 30967, + [SMALL_STATE(828)] = 31016, + [SMALL_STATE(829)] = 31064, + [SMALL_STATE(830)] = 31112, + [SMALL_STATE(831)] = 31160, + [SMALL_STATE(832)] = 31208, + [SMALL_STATE(833)] = 31256, + [SMALL_STATE(834)] = 31304, + [SMALL_STATE(835)] = 31352, + [SMALL_STATE(836)] = 31400, + [SMALL_STATE(837)] = 31448, + [SMALL_STATE(838)] = 31496, + [SMALL_STATE(839)] = 31544, + [SMALL_STATE(840)] = 31592, + [SMALL_STATE(841)] = 31640, + [SMALL_STATE(842)] = 31688, + [SMALL_STATE(843)] = 31736, + [SMALL_STATE(844)] = 31784, + [SMALL_STATE(845)] = 31836, + [SMALL_STATE(846)] = 31884, + [SMALL_STATE(847)] = 31932, + [SMALL_STATE(848)] = 31980, + [SMALL_STATE(849)] = 32028, + [SMALL_STATE(850)] = 32076, + [SMALL_STATE(851)] = 32124, + [SMALL_STATE(852)] = 32176, + [SMALL_STATE(853)] = 32224, + [SMALL_STATE(854)] = 32272, + [SMALL_STATE(855)] = 32320, + [SMALL_STATE(856)] = 32368, + [SMALL_STATE(857)] = 32416, + [SMALL_STATE(858)] = 32464, + [SMALL_STATE(859)] = 32512, + [SMALL_STATE(860)] = 32560, + [SMALL_STATE(861)] = 32612, + [SMALL_STATE(862)] = 32660, + [SMALL_STATE(863)] = 32712, + [SMALL_STATE(864)] = 32760, + [SMALL_STATE(865)] = 32812, + [SMALL_STATE(866)] = 32860, + [SMALL_STATE(867)] = 32908, + [SMALL_STATE(868)] = 32956, + [SMALL_STATE(869)] = 33004, + [SMALL_STATE(870)] = 33056, + [SMALL_STATE(871)] = 33108, + [SMALL_STATE(872)] = 33185, + [SMALL_STATE(873)] = 33248, + [SMALL_STATE(874)] = 33307, + [SMALL_STATE(875)] = 33390, + [SMALL_STATE(876)] = 33449, + [SMALL_STATE(877)] = 33526, + [SMALL_STATE(878)] = 33609, + [SMALL_STATE(879)] = 33686, + [SMALL_STATE(880)] = 33745, + [SMALL_STATE(881)] = 33804, + [SMALL_STATE(882)] = 33887, + [SMALL_STATE(883)] = 33948, + [SMALL_STATE(884)] = 34027, + [SMALL_STATE(885)] = 34104, + [SMALL_STATE(886)] = 34179, + [SMALL_STATE(887)] = 34252, + [SMALL_STATE(888)] = 34323, + [SMALL_STATE(889)] = 34392, + [SMALL_STATE(890)] = 34457, + [SMALL_STATE(891)] = 34514, + [SMALL_STATE(892)] = 34591, + [SMALL_STATE(893)] = 34650, + [SMALL_STATE(894)] = 34696, + [SMALL_STATE(895)] = 34742, + [SMALL_STATE(896)] = 34800, + [SMALL_STATE(897)] = 34846, + [SMALL_STATE(898)] = 34896, + [SMALL_STATE(899)] = 34942, + [SMALL_STATE(900)] = 34988, + [SMALL_STATE(901)] = 35041, + [SMALL_STATE(902)] = 35096, + [SMALL_STATE(903)] = 35147, + [SMALL_STATE(904)] = 35191, + [SMALL_STATE(905)] = 35235, + [SMALL_STATE(906)] = 35279, + [SMALL_STATE(907)] = 35323, + [SMALL_STATE(908)] = 35367, + [SMALL_STATE(909)] = 35411, + [SMALL_STATE(910)] = 35455, + [SMALL_STATE(911)] = 35499, + [SMALL_STATE(912)] = 35543, + [SMALL_STATE(913)] = 35587, + [SMALL_STATE(914)] = 35630, + [SMALL_STATE(915)] = 35673, + [SMALL_STATE(916)] = 35716, + [SMALL_STATE(917)] = 35787, + [SMALL_STATE(918)] = 35830, + [SMALL_STATE(919)] = 35873, + [SMALL_STATE(920)] = 35916, + [SMALL_STATE(921)] = 35961, + [SMALL_STATE(922)] = 36004, + [SMALL_STATE(923)] = 36047, + [SMALL_STATE(924)] = 36090, + [SMALL_STATE(925)] = 36133, + [SMALL_STATE(926)] = 36178, + [SMALL_STATE(927)] = 36221, + [SMALL_STATE(928)] = 36292, + [SMALL_STATE(929)] = 36335, + [SMALL_STATE(930)] = 36378, + [SMALL_STATE(931)] = 36451, + [SMALL_STATE(932)] = 36496, + [SMALL_STATE(933)] = 36569, + [SMALL_STATE(934)] = 36614, + [SMALL_STATE(935)] = 36682, + [SMALL_STATE(936)] = 36750, + [SMALL_STATE(937)] = 36818, + [SMALL_STATE(938)] = 36886, + [SMALL_STATE(939)] = 36954, + [SMALL_STATE(940)] = 37022, + [SMALL_STATE(941)] = 37090, + [SMALL_STATE(942)] = 37158, + [SMALL_STATE(943)] = 37213, + [SMALL_STATE(944)] = 37284, + [SMALL_STATE(945)] = 37353, + [SMALL_STATE(946)] = 37420, + [SMALL_STATE(947)] = 37485, + [SMALL_STATE(948)] = 37548, + [SMALL_STATE(949)] = 37607, + [SMALL_STATE(950)] = 37664, + [SMALL_STATE(951)] = 37741, + [SMALL_STATE(952)] = 37818, + [SMALL_STATE(953)] = 37895, + [SMALL_STATE(954)] = 37972, + [SMALL_STATE(955)] = 38021, + [SMALL_STATE(956)] = 38094, + [SMALL_STATE(957)] = 38158, + [SMALL_STATE(958)] = 38226, + [SMALL_STATE(959)] = 38300, + [SMALL_STATE(960)] = 38364, + [SMALL_STATE(961)] = 38430, + [SMALL_STATE(962)] = 38484, + [SMALL_STATE(963)] = 38542, + [SMALL_STATE(964)] = 38606, + [SMALL_STATE(965)] = 38662, + [SMALL_STATE(966)] = 38726, + [SMALL_STATE(967)] = 38790, + [SMALL_STATE(968)] = 38854, + [SMALL_STATE(969)] = 38918, + [SMALL_STATE(970)] = 38982, + [SMALL_STATE(971)] = 39050, + [SMALL_STATE(972)] = 39114, + [SMALL_STATE(973)] = 39178, + [SMALL_STATE(974)] = 39248, + [SMALL_STATE(975)] = 39312, + [SMALL_STATE(976)] = 39376, + [SMALL_STATE(977)] = 39450, + [SMALL_STATE(978)] = 39514, + [SMALL_STATE(979)] = 39576, + [SMALL_STATE(980)] = 39640, + [SMALL_STATE(981)] = 39714, + [SMALL_STATE(982)] = 39775, + [SMALL_STATE(983)] = 39822, + [SMALL_STATE(984)] = 39883, + [SMALL_STATE(985)] = 39944, + [SMALL_STATE(986)] = 40005, + [SMALL_STATE(987)] = 40066, + [SMALL_STATE(988)] = 40127, + [SMALL_STATE(989)] = 40201, + [SMALL_STATE(990)] = 40239, + [SMALL_STATE(991)] = 40277, + [SMALL_STATE(992)] = 40315, + [SMALL_STATE(993)] = 40353, + [SMALL_STATE(994)] = 40391, + [SMALL_STATE(995)] = 40429, + [SMALL_STATE(996)] = 40500, + [SMALL_STATE(997)] = 40575, + [SMALL_STATE(998)] = 40650, + [SMALL_STATE(999)] = 40725, + [SMALL_STATE(1000)] = 40772, + [SMALL_STATE(1001)] = 40817, + [SMALL_STATE(1002)] = 40892, + [SMALL_STATE(1003)] = 40967, + [SMALL_STATE(1004)] = 41042, + [SMALL_STATE(1005)] = 41114, + [SMALL_STATE(1006)] = 41186, + [SMALL_STATE(1007)] = 41256, + [SMALL_STATE(1008)] = 41328, + [SMALL_STATE(1009)] = 41400, + [SMALL_STATE(1010)] = 41472, + [SMALL_STATE(1011)] = 41544, + [SMALL_STATE(1012)] = 41616, + [SMALL_STATE(1013)] = 41688, + [SMALL_STATE(1014)] = 41760, + [SMALL_STATE(1015)] = 41832, + [SMALL_STATE(1016)] = 41884, + [SMALL_STATE(1017)] = 41952, + [SMALL_STATE(1018)] = 42018, + [SMALL_STATE(1019)] = 42084, + [SMALL_STATE(1020)] = 42148, + [SMALL_STATE(1021)] = 42210, + [SMALL_STATE(1022)] = 42270, + [SMALL_STATE(1023)] = 42326, + [SMALL_STATE(1024)] = 42380, + [SMALL_STATE(1025)] = 42452, + [SMALL_STATE(1026)] = 42524, + [SMALL_STATE(1027)] = 42596, + [SMALL_STATE(1028)] = 42668, + [SMALL_STATE(1029)] = 42740, + [SMALL_STATE(1030)] = 42810, + [SMALL_STATE(1031)] = 42882, + [SMALL_STATE(1032)] = 42954, + [SMALL_STATE(1033)] = 43026, + [SMALL_STATE(1034)] = 43098, + [SMALL_STATE(1035)] = 43170, + [SMALL_STATE(1036)] = 43244, + [SMALL_STATE(1037)] = 43314, + [SMALL_STATE(1038)] = 43386, + [SMALL_STATE(1039)] = 43458, + [SMALL_STATE(1040)] = 43528, + [SMALL_STATE(1041)] = 43598, + [SMALL_STATE(1042)] = 43668, + [SMALL_STATE(1043)] = 43740, + [SMALL_STATE(1044)] = 43810, + [SMALL_STATE(1045)] = 43882, + [SMALL_STATE(1046)] = 43954, + [SMALL_STATE(1047)] = 44026, + [SMALL_STATE(1048)] = 44098, + [SMALL_STATE(1049)] = 44170, + [SMALL_STATE(1050)] = 44240, + [SMALL_STATE(1051)] = 44312, + [SMALL_STATE(1052)] = 44381, + [SMALL_STATE(1053)] = 44450, + [SMALL_STATE(1054)] = 44519, + [SMALL_STATE(1055)] = 44588, + [SMALL_STATE(1056)] = 44627, + [SMALL_STATE(1057)] = 44696, + [SMALL_STATE(1058)] = 44765, + [SMALL_STATE(1059)] = 44834, + [SMALL_STATE(1060)] = 44903, + [SMALL_STATE(1061)] = 44958, + [SMALL_STATE(1062)] = 45027, + [SMALL_STATE(1063)] = 45082, + [SMALL_STATE(1064)] = 45121, + [SMALL_STATE(1065)] = 45190, + [SMALL_STATE(1066)] = 45259, + [SMALL_STATE(1067)] = 45314, + [SMALL_STATE(1068)] = 45383, + [SMALL_STATE(1069)] = 45452, + [SMALL_STATE(1070)] = 45521, + [SMALL_STATE(1071)] = 45590, + [SMALL_STATE(1072)] = 45645, + [SMALL_STATE(1073)] = 45700, + [SMALL_STATE(1074)] = 45769, + [SMALL_STATE(1075)] = 45838, + [SMALL_STATE(1076)] = 45907, + [SMALL_STATE(1077)] = 45976, + [SMALL_STATE(1078)] = 46031, + [SMALL_STATE(1079)] = 46070, + [SMALL_STATE(1080)] = 46139, + [SMALL_STATE(1081)] = 46208, + [SMALL_STATE(1082)] = 46277, + [SMALL_STATE(1083)] = 46329, + [SMALL_STATE(1084)] = 46381, + [SMALL_STATE(1085)] = 46433, + [SMALL_STATE(1086)] = 46485, + [SMALL_STATE(1087)] = 46521, + [SMALL_STATE(1088)] = 46587, + [SMALL_STATE(1089)] = 46639, + [SMALL_STATE(1090)] = 46691, + [SMALL_STATE(1091)] = 46732, + [SMALL_STATE(1092)] = 46771, + [SMALL_STATE(1093)] = 46811, + [SMALL_STATE(1094)] = 46851, + [SMALL_STATE(1095)] = 46891, + [SMALL_STATE(1096)] = 46931, + [SMALL_STATE(1097)] = 46980, + [SMALL_STATE(1098)] = 47014, + [SMALL_STATE(1099)] = 47068, + [SMALL_STATE(1100)] = 47102, + [SMALL_STATE(1101)] = 47156, + [SMALL_STATE(1102)] = 47190, + [SMALL_STATE(1103)] = 47224, + [SMALL_STATE(1104)] = 47258, + [SMALL_STATE(1105)] = 47312, + [SMALL_STATE(1106)] = 47350, + [SMALL_STATE(1107)] = 47404, + [SMALL_STATE(1108)] = 47440, + [SMALL_STATE(1109)] = 47474, + [SMALL_STATE(1110)] = 47508, + [SMALL_STATE(1111)] = 47542, + [SMALL_STATE(1112)] = 47576, + [SMALL_STATE(1113)] = 47631, + [SMALL_STATE(1114)] = 47682, + [SMALL_STATE(1115)] = 47733, + [SMALL_STATE(1116)] = 47784, + [SMALL_STATE(1117)] = 47835, + [SMALL_STATE(1118)] = 47878, + [SMALL_STATE(1119)] = 47929, + [SMALL_STATE(1120)] = 47984, + [SMALL_STATE(1121)] = 48035, + [SMALL_STATE(1122)] = 48068, + [SMALL_STATE(1123)] = 48119, + [SMALL_STATE(1124)] = 48162, + [SMALL_STATE(1125)] = 48213, + [SMALL_STATE(1126)] = 48264, + [SMALL_STATE(1127)] = 48315, + [SMALL_STATE(1128)] = 48366, + [SMALL_STATE(1129)] = 48409, + [SMALL_STATE(1130)] = 48464, + [SMALL_STATE(1131)] = 48504, + [SMALL_STATE(1132)] = 48544, + [SMALL_STATE(1133)] = 48584, + [SMALL_STATE(1134)] = 48624, + [SMALL_STATE(1135)] = 48664, + [SMALL_STATE(1136)] = 48704, + [SMALL_STATE(1137)] = 48744, + [SMALL_STATE(1138)] = 48784, + [SMALL_STATE(1139)] = 48824, + [SMALL_STATE(1140)] = 48864, + [SMALL_STATE(1141)] = 48904, + [SMALL_STATE(1142)] = 48944, + [SMALL_STATE(1143)] = 48984, + [SMALL_STATE(1144)] = 49024, + [SMALL_STATE(1145)] = 49064, + [SMALL_STATE(1146)] = 49104, + [SMALL_STATE(1147)] = 49144, + [SMALL_STATE(1148)] = 49184, + [SMALL_STATE(1149)] = 49224, + [SMALL_STATE(1150)] = 49262, + [SMALL_STATE(1151)] = 49302, + [SMALL_STATE(1152)] = 49330, + [SMALL_STATE(1153)] = 49370, + [SMALL_STATE(1154)] = 49410, + [SMALL_STATE(1155)] = 49438, + [SMALL_STATE(1156)] = 49470, + [SMALL_STATE(1157)] = 49498, + [SMALL_STATE(1158)] = 49546, + [SMALL_STATE(1159)] = 49586, + [SMALL_STATE(1160)] = 49626, + [SMALL_STATE(1161)] = 49672, + [SMALL_STATE(1162)] = 49712, + [SMALL_STATE(1163)] = 49762, + [SMALL_STATE(1164)] = 49802, + [SMALL_STATE(1165)] = 49842, + [SMALL_STATE(1166)] = 49888, + [SMALL_STATE(1167)] = 49932, + [SMALL_STATE(1168)] = 49974, + [SMALL_STATE(1169)] = 50014, + [SMALL_STATE(1170)] = 50054, + [SMALL_STATE(1171)] = 50090, + [SMALL_STATE(1172)] = 50124, + [SMALL_STATE(1173)] = 50164, + [SMALL_STATE(1174)] = 50204, + [SMALL_STATE(1175)] = 50232, + [SMALL_STATE(1176)] = 50272, + [SMALL_STATE(1177)] = 50300, + [SMALL_STATE(1178)] = 50340, + [SMALL_STATE(1179)] = 50380, + [SMALL_STATE(1180)] = 50420, + [SMALL_STATE(1181)] = 50460, + [SMALL_STATE(1182)] = 50508, + [SMALL_STATE(1183)] = 50548, + [SMALL_STATE(1184)] = 50588, + [SMALL_STATE(1185)] = 50628, + [SMALL_STATE(1186)] = 50668, + [SMALL_STATE(1187)] = 50696, + [SMALL_STATE(1188)] = 50723, + [SMALL_STATE(1189)] = 50756, + [SMALL_STATE(1190)] = 50801, + [SMALL_STATE(1191)] = 50850, + [SMALL_STATE(1192)] = 50893, + [SMALL_STATE(1193)] = 50938, + [SMALL_STATE(1194)] = 50969, + [SMALL_STATE(1195)] = 50996, + [SMALL_STATE(1196)] = 51041, + [SMALL_STATE(1197)] = 51086, + [SMALL_STATE(1198)] = 51129, + [SMALL_STATE(1199)] = 51156, + [SMALL_STATE(1200)] = 51183, + [SMALL_STATE(1201)] = 51210, + [SMALL_STATE(1202)] = 51255, + [SMALL_STATE(1203)] = 51298, + [SMALL_STATE(1204)] = 51343, + [SMALL_STATE(1205)] = 51370, + [SMALL_STATE(1206)] = 51397, + [SMALL_STATE(1207)] = 51442, + [SMALL_STATE(1208)] = 51485, + [SMALL_STATE(1209)] = 51528, + [SMALL_STATE(1210)] = 51555, + [SMALL_STATE(1211)] = 51600, + [SMALL_STATE(1212)] = 51649, + [SMALL_STATE(1213)] = 51694, + [SMALL_STATE(1214)] = 51739, + [SMALL_STATE(1215)] = 51780, + [SMALL_STATE(1216)] = 51825, + [SMALL_STATE(1217)] = 51852, + [SMALL_STATE(1218)] = 51897, + [SMALL_STATE(1219)] = 51942, + [SMALL_STATE(1220)] = 51969, + [SMALL_STATE(1221)] = 52008, + [SMALL_STATE(1222)] = 52053, + [SMALL_STATE(1223)] = 52090, + [SMALL_STATE(1224)] = 52125, + [SMALL_STATE(1225)] = 52170, + [SMALL_STATE(1226)] = 52199, + [SMALL_STATE(1227)] = 52239, + [SMALL_STATE(1228)] = 52283, + [SMALL_STATE(1229)] = 52323, + [SMALL_STATE(1230)] = 52363, + [SMALL_STATE(1231)] = 52403, + [SMALL_STATE(1232)] = 52443, + [SMALL_STATE(1233)] = 52483, + [SMALL_STATE(1234)] = 52524, + [SMALL_STATE(1235)] = 52565, + [SMALL_STATE(1236)] = 52606, + [SMALL_STATE(1237)] = 52647, + [SMALL_STATE(1238)] = 52688, + [SMALL_STATE(1239)] = 52729, + [SMALL_STATE(1240)] = 52770, + [SMALL_STATE(1241)] = 52811, + [SMALL_STATE(1242)] = 52849, + [SMALL_STATE(1243)] = 52887, + [SMALL_STATE(1244)] = 52921, + [SMALL_STATE(1245)] = 52961, + [SMALL_STATE(1246)] = 53000, + [SMALL_STATE(1247)] = 53039, + [SMALL_STATE(1248)] = 53068, + [SMALL_STATE(1249)] = 53097, + [SMALL_STATE(1250)] = 53138, + [SMALL_STATE(1251)] = 53179, + [SMALL_STATE(1252)] = 53216, + [SMALL_STATE(1253)] = 53245, + [SMALL_STATE(1254)] = 53284, + [SMALL_STATE(1255)] = 53313, + [SMALL_STATE(1256)] = 53354, + [SMALL_STATE(1257)] = 53393, + [SMALL_STATE(1258)] = 53419, + [SMALL_STATE(1259)] = 53456, + [SMALL_STATE(1260)] = 53493, + [SMALL_STATE(1261)] = 53522, + [SMALL_STATE(1262)] = 53559, + [SMALL_STATE(1263)] = 53580, + [SMALL_STATE(1264)] = 53609, + [SMALL_STATE(1265)] = 53634, + [SMALL_STATE(1266)] = 53663, + [SMALL_STATE(1267)] = 53696, + [SMALL_STATE(1268)] = 53717, + [SMALL_STATE(1269)] = 53754, + [SMALL_STATE(1270)] = 53791, + [SMALL_STATE(1271)] = 53828, + [SMALL_STATE(1272)] = 53861, + [SMALL_STATE(1273)] = 53898, + [SMALL_STATE(1274)] = 53927, + [SMALL_STATE(1275)] = 53964, + [SMALL_STATE(1276)] = 53985, + [SMALL_STATE(1277)] = 54022, + [SMALL_STATE(1278)] = 54059, + [SMALL_STATE(1279)] = 54096, + [SMALL_STATE(1280)] = 54132, + [SMALL_STATE(1281)] = 54156, + [SMALL_STATE(1282)] = 54185, + [SMALL_STATE(1283)] = 54212, + [SMALL_STATE(1284)] = 54241, + [SMALL_STATE(1285)] = 54266, + [SMALL_STATE(1286)] = 54291, + [SMALL_STATE(1287)] = 54320, + [SMALL_STATE(1288)] = 54351, + [SMALL_STATE(1289)] = 54380, + [SMALL_STATE(1290)] = 54411, + [SMALL_STATE(1291)] = 54440, + [SMALL_STATE(1292)] = 54467, + [SMALL_STATE(1293)] = 54498, + [SMALL_STATE(1294)] = 54527, + [SMALL_STATE(1295)] = 54556, + [SMALL_STATE(1296)] = 54587, + [SMALL_STATE(1297)] = 54616, + [SMALL_STATE(1298)] = 54643, + [SMALL_STATE(1299)] = 54674, + [SMALL_STATE(1300)] = 54703, + [SMALL_STATE(1301)] = 54732, + [SMALL_STATE(1302)] = 54763, + [SMALL_STATE(1303)] = 54794, + [SMALL_STATE(1304)] = 54823, + [SMALL_STATE(1305)] = 54852, + [SMALL_STATE(1306)] = 54879, + [SMALL_STATE(1307)] = 54910, + [SMALL_STATE(1308)] = 54939, + [SMALL_STATE(1309)] = 54968, + [SMALL_STATE(1310)] = 54999, + [SMALL_STATE(1311)] = 55023, + [SMALL_STATE(1312)] = 55041, + [SMALL_STATE(1313)] = 55071, + [SMALL_STATE(1314)] = 55089, + [SMALL_STATE(1315)] = 55107, + [SMALL_STATE(1316)] = 55125, + [SMALL_STATE(1317)] = 55151, + [SMALL_STATE(1318)] = 55175, + [SMALL_STATE(1319)] = 55193, + [SMALL_STATE(1320)] = 55225, + [SMALL_STATE(1321)] = 55243, + [SMALL_STATE(1322)] = 55275, + [SMALL_STATE(1323)] = 55307, + [SMALL_STATE(1324)] = 55333, + [SMALL_STATE(1325)] = 55365, + [SMALL_STATE(1326)] = 55391, + [SMALL_STATE(1327)] = 55417, + [SMALL_STATE(1328)] = 55435, + [SMALL_STATE(1329)] = 55457, + [SMALL_STATE(1330)] = 55478, + [SMALL_STATE(1331)] = 55507, + [SMALL_STATE(1332)] = 55536, + [SMALL_STATE(1333)] = 55557, + [SMALL_STATE(1334)] = 55586, + [SMALL_STATE(1335)] = 55607, + [SMALL_STATE(1336)] = 55632, + [SMALL_STATE(1337)] = 55661, + [SMALL_STATE(1338)] = 55682, + [SMALL_STATE(1339)] = 55711, + [SMALL_STATE(1340)] = 55732, + [SMALL_STATE(1341)] = 55761, + [SMALL_STATE(1342)] = 55782, + [SMALL_STATE(1343)] = 55807, + [SMALL_STATE(1344)] = 55826, + [SMALL_STATE(1345)] = 55855, + [SMALL_STATE(1346)] = 55884, + [SMALL_STATE(1347)] = 55905, + [SMALL_STATE(1348)] = 55926, + [SMALL_STATE(1349)] = 55946, + [SMALL_STATE(1350)] = 55972, + [SMALL_STATE(1351)] = 55998, + [SMALL_STATE(1352)] = 56014, + [SMALL_STATE(1353)] = 56030, + [SMALL_STATE(1354)] = 56056, + [SMALL_STATE(1355)] = 56082, + [SMALL_STATE(1356)] = 56108, + [SMALL_STATE(1357)] = 56124, + [SMALL_STATE(1358)] = 56150, + [SMALL_STATE(1359)] = 56172, + [SMALL_STATE(1360)] = 56188, + [SMALL_STATE(1361)] = 56214, + [SMALL_STATE(1362)] = 56234, + [SMALL_STATE(1363)] = 56260, + [SMALL_STATE(1364)] = 56276, + [SMALL_STATE(1365)] = 56294, + [SMALL_STATE(1366)] = 56320, + [SMALL_STATE(1367)] = 56346, + [SMALL_STATE(1368)] = 56362, + [SMALL_STATE(1369)] = 56388, + [SMALL_STATE(1370)] = 56404, + [SMALL_STATE(1371)] = 56420, + [SMALL_STATE(1372)] = 56446, + [SMALL_STATE(1373)] = 56462, + [SMALL_STATE(1374)] = 56482, + [SMALL_STATE(1375)] = 56506, + [SMALL_STATE(1376)] = 56525, + [SMALL_STATE(1377)] = 56540, + [SMALL_STATE(1378)] = 56555, + [SMALL_STATE(1379)] = 56578, + [SMALL_STATE(1380)] = 56593, + [SMALL_STATE(1381)] = 56608, + [SMALL_STATE(1382)] = 56625, + [SMALL_STATE(1383)] = 56642, + [SMALL_STATE(1384)] = 56667, + [SMALL_STATE(1385)] = 56682, + [SMALL_STATE(1386)] = 56705, + [SMALL_STATE(1387)] = 56728, + [SMALL_STATE(1388)] = 56745, + [SMALL_STATE(1389)] = 56764, + [SMALL_STATE(1390)] = 56787, + [SMALL_STATE(1391)] = 56802, + [SMALL_STATE(1392)] = 56817, + [SMALL_STATE(1393)] = 56840, + [SMALL_STATE(1394)] = 56863, + [SMALL_STATE(1395)] = 56880, + [SMALL_STATE(1396)] = 56895, + [SMALL_STATE(1397)] = 56910, + [SMALL_STATE(1398)] = 56925, + [SMALL_STATE(1399)] = 56948, + [SMALL_STATE(1400)] = 56962, + [SMALL_STATE(1401)] = 56978, + [SMALL_STATE(1402)] = 56996, + [SMALL_STATE(1403)] = 57014, + [SMALL_STATE(1404)] = 57032, + [SMALL_STATE(1405)] = 57052, + [SMALL_STATE(1406)] = 57070, + [SMALL_STATE(1407)] = 57084, + [SMALL_STATE(1408)] = 57098, + [SMALL_STATE(1409)] = 57114, + [SMALL_STATE(1410)] = 57128, + [SMALL_STATE(1411)] = 57142, + [SMALL_STATE(1412)] = 57156, + [SMALL_STATE(1413)] = 57170, + [SMALL_STATE(1414)] = 57190, + [SMALL_STATE(1415)] = 57210, + [SMALL_STATE(1416)] = 57224, + [SMALL_STATE(1417)] = 57242, + [SMALL_STATE(1418)] = 57262, + [SMALL_STATE(1419)] = 57276, + [SMALL_STATE(1420)] = 57296, + [SMALL_STATE(1421)] = 57316, + [SMALL_STATE(1422)] = 57330, + [SMALL_STATE(1423)] = 57344, + [SMALL_STATE(1424)] = 57362, + [SMALL_STATE(1425)] = 57376, + [SMALL_STATE(1426)] = 57390, + [SMALL_STATE(1427)] = 57404, + [SMALL_STATE(1428)] = 57420, + [SMALL_STATE(1429)] = 57440, + [SMALL_STATE(1430)] = 57460, + [SMALL_STATE(1431)] = 57480, + [SMALL_STATE(1432)] = 57498, + [SMALL_STATE(1433)] = 57518, + [SMALL_STATE(1434)] = 57532, + [SMALL_STATE(1435)] = 57552, + [SMALL_STATE(1436)] = 57572, + [SMALL_STATE(1437)] = 57592, + [SMALL_STATE(1438)] = 57603, + [SMALL_STATE(1439)] = 57622, + [SMALL_STATE(1440)] = 57639, + [SMALL_STATE(1441)] = 57650, + [SMALL_STATE(1442)] = 57661, + [SMALL_STATE(1443)] = 57672, + [SMALL_STATE(1444)] = 57683, + [SMALL_STATE(1445)] = 57694, + [SMALL_STATE(1446)] = 57705, + [SMALL_STATE(1447)] = 57716, + [SMALL_STATE(1448)] = 57727, + [SMALL_STATE(1449)] = 57746, + [SMALL_STATE(1450)] = 57761, + [SMALL_STATE(1451)] = 57776, + [SMALL_STATE(1452)] = 57795, + [SMALL_STATE(1453)] = 57806, + [SMALL_STATE(1454)] = 57817, + [SMALL_STATE(1455)] = 57834, + [SMALL_STATE(1456)] = 57845, + [SMALL_STATE(1457)] = 57856, + [SMALL_STATE(1458)] = 57870, + [SMALL_STATE(1459)] = 57884, + [SMALL_STATE(1460)] = 57898, + [SMALL_STATE(1461)] = 57912, + [SMALL_STATE(1462)] = 57926, + [SMALL_STATE(1463)] = 57940, + [SMALL_STATE(1464)] = 57950, + [SMALL_STATE(1465)] = 57966, + [SMALL_STATE(1466)] = 57980, + [SMALL_STATE(1467)] = 57994, + [SMALL_STATE(1468)] = 58008, + [SMALL_STATE(1469)] = 58024, + [SMALL_STATE(1470)] = 58038, + [SMALL_STATE(1471)] = 58052, + [SMALL_STATE(1472)] = 58068, + [SMALL_STATE(1473)] = 58082, + [SMALL_STATE(1474)] = 58096, + [SMALL_STATE(1475)] = 58110, + [SMALL_STATE(1476)] = 58124, + [SMALL_STATE(1477)] = 58138, + [SMALL_STATE(1478)] = 58152, + [SMALL_STATE(1479)] = 58168, + [SMALL_STATE(1480)] = 58184, + [SMALL_STATE(1481)] = 58200, + [SMALL_STATE(1482)] = 58214, + [SMALL_STATE(1483)] = 58228, + [SMALL_STATE(1484)] = 58244, + [SMALL_STATE(1485)] = 58260, + [SMALL_STATE(1486)] = 58270, + [SMALL_STATE(1487)] = 58286, + [SMALL_STATE(1488)] = 58300, + [SMALL_STATE(1489)] = 58316, + [SMALL_STATE(1490)] = 58330, + [SMALL_STATE(1491)] = 58344, + [SMALL_STATE(1492)] = 58358, + [SMALL_STATE(1493)] = 58372, + [SMALL_STATE(1494)] = 58386, + [SMALL_STATE(1495)] = 58400, + [SMALL_STATE(1496)] = 58414, + [SMALL_STATE(1497)] = 58428, + [SMALL_STATE(1498)] = 58444, + [SMALL_STATE(1499)] = 58458, + [SMALL_STATE(1500)] = 58474, + [SMALL_STATE(1501)] = 58490, + [SMALL_STATE(1502)] = 58504, + [SMALL_STATE(1503)] = 58520, + [SMALL_STATE(1504)] = 58534, + [SMALL_STATE(1505)] = 58550, + [SMALL_STATE(1506)] = 58564, + [SMALL_STATE(1507)] = 58580, + [SMALL_STATE(1508)] = 58596, + [SMALL_STATE(1509)] = 58612, + [SMALL_STATE(1510)] = 58626, + [SMALL_STATE(1511)] = 58640, + [SMALL_STATE(1512)] = 58656, + [SMALL_STATE(1513)] = 58670, + [SMALL_STATE(1514)] = 58684, + [SMALL_STATE(1515)] = 58698, + [SMALL_STATE(1516)] = 58712, + [SMALL_STATE(1517)] = 58726, + [SMALL_STATE(1518)] = 58740, + [SMALL_STATE(1519)] = 58754, + [SMALL_STATE(1520)] = 58768, + [SMALL_STATE(1521)] = 58782, + [SMALL_STATE(1522)] = 58791, + [SMALL_STATE(1523)] = 58804, + [SMALL_STATE(1524)] = 58817, + [SMALL_STATE(1525)] = 58830, + [SMALL_STATE(1526)] = 58843, + [SMALL_STATE(1527)] = 58856, + [SMALL_STATE(1528)] = 58865, + [SMALL_STATE(1529)] = 58878, + [SMALL_STATE(1530)] = 58891, + [SMALL_STATE(1531)] = 58904, + [SMALL_STATE(1532)] = 58917, + [SMALL_STATE(1533)] = 58930, + [SMALL_STATE(1534)] = 58943, + [SMALL_STATE(1535)] = 58956, + [SMALL_STATE(1536)] = 58969, + [SMALL_STATE(1537)] = 58982, + [SMALL_STATE(1538)] = 58991, + [SMALL_STATE(1539)] = 59004, + [SMALL_STATE(1540)] = 59017, + [SMALL_STATE(1541)] = 59030, + [SMALL_STATE(1542)] = 59043, + [SMALL_STATE(1543)] = 59056, + [SMALL_STATE(1544)] = 59069, + [SMALL_STATE(1545)] = 59082, + [SMALL_STATE(1546)] = 59095, + [SMALL_STATE(1547)] = 59108, + [SMALL_STATE(1548)] = 59121, + [SMALL_STATE(1549)] = 59134, + [SMALL_STATE(1550)] = 59147, + [SMALL_STATE(1551)] = 59160, + [SMALL_STATE(1552)] = 59173, + [SMALL_STATE(1553)] = 59186, + [SMALL_STATE(1554)] = 59197, + [SMALL_STATE(1555)] = 59206, + [SMALL_STATE(1556)] = 59219, + [SMALL_STATE(1557)] = 59232, + [SMALL_STATE(1558)] = 59245, + [SMALL_STATE(1559)] = 59254, + [SMALL_STATE(1560)] = 59267, + [SMALL_STATE(1561)] = 59280, + [SMALL_STATE(1562)] = 59293, + [SMALL_STATE(1563)] = 59306, + [SMALL_STATE(1564)] = 59319, + [SMALL_STATE(1565)] = 59332, + [SMALL_STATE(1566)] = 59345, + [SMALL_STATE(1567)] = 59358, + [SMALL_STATE(1568)] = 59371, + [SMALL_STATE(1569)] = 59384, + [SMALL_STATE(1570)] = 59397, + [SMALL_STATE(1571)] = 59410, + [SMALL_STATE(1572)] = 59423, + [SMALL_STATE(1573)] = 59436, + [SMALL_STATE(1574)] = 59449, + [SMALL_STATE(1575)] = 59458, + [SMALL_STATE(1576)] = 59471, + [SMALL_STATE(1577)] = 59484, + [SMALL_STATE(1578)] = 59497, + [SMALL_STATE(1579)] = 59510, + [SMALL_STATE(1580)] = 59523, + [SMALL_STATE(1581)] = 59536, + [SMALL_STATE(1582)] = 59549, + [SMALL_STATE(1583)] = 59558, + [SMALL_STATE(1584)] = 59571, + [SMALL_STATE(1585)] = 59584, + [SMALL_STATE(1586)] = 59597, + [SMALL_STATE(1587)] = 59610, + [SMALL_STATE(1588)] = 59623, + [SMALL_STATE(1589)] = 59636, + [SMALL_STATE(1590)] = 59645, + [SMALL_STATE(1591)] = 59654, + [SMALL_STATE(1592)] = 59667, + [SMALL_STATE(1593)] = 59680, + [SMALL_STATE(1594)] = 59689, + [SMALL_STATE(1595)] = 59702, + [SMALL_STATE(1596)] = 59715, + [SMALL_STATE(1597)] = 59726, + [SMALL_STATE(1598)] = 59739, + [SMALL_STATE(1599)] = 59752, + [SMALL_STATE(1600)] = 59761, + [SMALL_STATE(1601)] = 59774, + [SMALL_STATE(1602)] = 59785, + [SMALL_STATE(1603)] = 59798, + [SMALL_STATE(1604)] = 59809, + [SMALL_STATE(1605)] = 59822, + [SMALL_STATE(1606)] = 59835, + [SMALL_STATE(1607)] = 59848, + [SMALL_STATE(1608)] = 59861, + [SMALL_STATE(1609)] = 59874, + [SMALL_STATE(1610)] = 59887, + [SMALL_STATE(1611)] = 59900, + [SMALL_STATE(1612)] = 59913, + [SMALL_STATE(1613)] = 59926, + [SMALL_STATE(1614)] = 59939, + [SMALL_STATE(1615)] = 59952, + [SMALL_STATE(1616)] = 59965, + [SMALL_STATE(1617)] = 59978, + [SMALL_STATE(1618)] = 59991, + [SMALL_STATE(1619)] = 60004, + [SMALL_STATE(1620)] = 60017, + [SMALL_STATE(1621)] = 60030, + [SMALL_STATE(1622)] = 60043, + [SMALL_STATE(1623)] = 60056, + [SMALL_STATE(1624)] = 60069, + [SMALL_STATE(1625)] = 60082, + [SMALL_STATE(1626)] = 60095, + [SMALL_STATE(1627)] = 60108, + [SMALL_STATE(1628)] = 60121, + [SMALL_STATE(1629)] = 60134, + [SMALL_STATE(1630)] = 60147, + [SMALL_STATE(1631)] = 60160, + [SMALL_STATE(1632)] = 60173, + [SMALL_STATE(1633)] = 60186, + [SMALL_STATE(1634)] = 60199, + [SMALL_STATE(1635)] = 60212, + [SMALL_STATE(1636)] = 60221, + [SMALL_STATE(1637)] = 60234, + [SMALL_STATE(1638)] = 60247, + [SMALL_STATE(1639)] = 60260, + [SMALL_STATE(1640)] = 60273, + [SMALL_STATE(1641)] = 60286, + [SMALL_STATE(1642)] = 60299, + [SMALL_STATE(1643)] = 60310, + [SMALL_STATE(1644)] = 60320, + [SMALL_STATE(1645)] = 60330, + [SMALL_STATE(1646)] = 60340, + [SMALL_STATE(1647)] = 60350, + [SMALL_STATE(1648)] = 60360, + [SMALL_STATE(1649)] = 60370, + [SMALL_STATE(1650)] = 60380, + [SMALL_STATE(1651)] = 60390, + [SMALL_STATE(1652)] = 60400, + [SMALL_STATE(1653)] = 60410, + [SMALL_STATE(1654)] = 60420, + [SMALL_STATE(1655)] = 60428, + [SMALL_STATE(1656)] = 60438, + [SMALL_STATE(1657)] = 60448, + [SMALL_STATE(1658)] = 60456, + [SMALL_STATE(1659)] = 60464, + [SMALL_STATE(1660)] = 60474, + [SMALL_STATE(1661)] = 60482, + [SMALL_STATE(1662)] = 60490, + [SMALL_STATE(1663)] = 60500, + [SMALL_STATE(1664)] = 60510, + [SMALL_STATE(1665)] = 60520, + [SMALL_STATE(1666)] = 60528, + [SMALL_STATE(1667)] = 60538, + [SMALL_STATE(1668)] = 60548, + [SMALL_STATE(1669)] = 60556, + [SMALL_STATE(1670)] = 60566, + [SMALL_STATE(1671)] = 60576, + [SMALL_STATE(1672)] = 60584, + [SMALL_STATE(1673)] = 60594, + [SMALL_STATE(1674)] = 60602, + [SMALL_STATE(1675)] = 60612, + [SMALL_STATE(1676)] = 60622, + [SMALL_STATE(1677)] = 60630, + [SMALL_STATE(1678)] = 60640, + [SMALL_STATE(1679)] = 60650, + [SMALL_STATE(1680)] = 60658, + [SMALL_STATE(1681)] = 60668, + [SMALL_STATE(1682)] = 60676, + [SMALL_STATE(1683)] = 60686, + [SMALL_STATE(1684)] = 60696, + [SMALL_STATE(1685)] = 60706, + [SMALL_STATE(1686)] = 60716, + [SMALL_STATE(1687)] = 60726, + [SMALL_STATE(1688)] = 60734, + [SMALL_STATE(1689)] = 60744, + [SMALL_STATE(1690)] = 60754, + [SMALL_STATE(1691)] = 60764, + [SMALL_STATE(1692)] = 60774, + [SMALL_STATE(1693)] = 60784, + [SMALL_STATE(1694)] = 60794, + [SMALL_STATE(1695)] = 60804, + [SMALL_STATE(1696)] = 60814, + [SMALL_STATE(1697)] = 60824, + [SMALL_STATE(1698)] = 60834, + [SMALL_STATE(1699)] = 60842, + [SMALL_STATE(1700)] = 60852, + [SMALL_STATE(1701)] = 60860, + [SMALL_STATE(1702)] = 60870, + [SMALL_STATE(1703)] = 60880, + [SMALL_STATE(1704)] = 60890, + [SMALL_STATE(1705)] = 60900, + [SMALL_STATE(1706)] = 60910, + [SMALL_STATE(1707)] = 60920, + [SMALL_STATE(1708)] = 60930, + [SMALL_STATE(1709)] = 60940, + [SMALL_STATE(1710)] = 60950, + [SMALL_STATE(1711)] = 60960, + [SMALL_STATE(1712)] = 60970, + [SMALL_STATE(1713)] = 60980, + [SMALL_STATE(1714)] = 60988, + [SMALL_STATE(1715)] = 60998, + [SMALL_STATE(1716)] = 61008, + [SMALL_STATE(1717)] = 61018, + [SMALL_STATE(1718)] = 61028, + [SMALL_STATE(1719)] = 61038, + [SMALL_STATE(1720)] = 61048, + [SMALL_STATE(1721)] = 61058, + [SMALL_STATE(1722)] = 61068, + [SMALL_STATE(1723)] = 61076, + [SMALL_STATE(1724)] = 61086, + [SMALL_STATE(1725)] = 61096, + [SMALL_STATE(1726)] = 61106, + [SMALL_STATE(1727)] = 61116, + [SMALL_STATE(1728)] = 61126, + [SMALL_STATE(1729)] = 61134, + [SMALL_STATE(1730)] = 61144, + [SMALL_STATE(1731)] = 61154, + [SMALL_STATE(1732)] = 61161, + [SMALL_STATE(1733)] = 61168, + [SMALL_STATE(1734)] = 61175, + [SMALL_STATE(1735)] = 61182, + [SMALL_STATE(1736)] = 61189, + [SMALL_STATE(1737)] = 61196, + [SMALL_STATE(1738)] = 61203, + [SMALL_STATE(1739)] = 61210, + [SMALL_STATE(1740)] = 61217, + [SMALL_STATE(1741)] = 61224, + [SMALL_STATE(1742)] = 61231, + [SMALL_STATE(1743)] = 61238, + [SMALL_STATE(1744)] = 61245, + [SMALL_STATE(1745)] = 61252, + [SMALL_STATE(1746)] = 61259, + [SMALL_STATE(1747)] = 61266, + [SMALL_STATE(1748)] = 61273, + [SMALL_STATE(1749)] = 61280, + [SMALL_STATE(1750)] = 61287, + [SMALL_STATE(1751)] = 61294, + [SMALL_STATE(1752)] = 61301, + [SMALL_STATE(1753)] = 61308, + [SMALL_STATE(1754)] = 61315, + [SMALL_STATE(1755)] = 61322, + [SMALL_STATE(1756)] = 61329, + [SMALL_STATE(1757)] = 61336, + [SMALL_STATE(1758)] = 61343, + [SMALL_STATE(1759)] = 61350, + [SMALL_STATE(1760)] = 61357, + [SMALL_STATE(1761)] = 61364, + [SMALL_STATE(1762)] = 61371, + [SMALL_STATE(1763)] = 61378, + [SMALL_STATE(1764)] = 61385, + [SMALL_STATE(1765)] = 61392, + [SMALL_STATE(1766)] = 61399, + [SMALL_STATE(1767)] = 61406, + [SMALL_STATE(1768)] = 61413, + [SMALL_STATE(1769)] = 61420, + [SMALL_STATE(1770)] = 61427, + [SMALL_STATE(1771)] = 61434, + [SMALL_STATE(1772)] = 61441, + [SMALL_STATE(1773)] = 61448, + [SMALL_STATE(1774)] = 61455, + [SMALL_STATE(1775)] = 61462, + [SMALL_STATE(1776)] = 61469, + [SMALL_STATE(1777)] = 61476, + [SMALL_STATE(1778)] = 61483, + [SMALL_STATE(1779)] = 61490, + [SMALL_STATE(1780)] = 61497, + [SMALL_STATE(1781)] = 61504, + [SMALL_STATE(1782)] = 61511, + [SMALL_STATE(1783)] = 61518, + [SMALL_STATE(1784)] = 61525, + [SMALL_STATE(1785)] = 61532, + [SMALL_STATE(1786)] = 61539, + [SMALL_STATE(1787)] = 61546, + [SMALL_STATE(1788)] = 61553, + [SMALL_STATE(1789)] = 61560, + [SMALL_STATE(1790)] = 61567, + [SMALL_STATE(1791)] = 61574, + [SMALL_STATE(1792)] = 61581, + [SMALL_STATE(1793)] = 61588, + [SMALL_STATE(1794)] = 61595, + [SMALL_STATE(1795)] = 61602, + [SMALL_STATE(1796)] = 61609, + [SMALL_STATE(1797)] = 61616, + [SMALL_STATE(1798)] = 61623, + [SMALL_STATE(1799)] = 61630, + [SMALL_STATE(1800)] = 61637, + [SMALL_STATE(1801)] = 61644, + [SMALL_STATE(1802)] = 61651, + [SMALL_STATE(1803)] = 61658, + [SMALL_STATE(1804)] = 61665, + [SMALL_STATE(1805)] = 61672, + [SMALL_STATE(1806)] = 61679, + [SMALL_STATE(1807)] = 61686, + [SMALL_STATE(1808)] = 61693, + [SMALL_STATE(1809)] = 61700, + [SMALL_STATE(1810)] = 61707, + [SMALL_STATE(1811)] = 61714, + [SMALL_STATE(1812)] = 61721, + [SMALL_STATE(1813)] = 61728, + [SMALL_STATE(1814)] = 61735, + [SMALL_STATE(1815)] = 61742, + [SMALL_STATE(1816)] = 61749, + [SMALL_STATE(1817)] = 61756, + [SMALL_STATE(1818)] = 61763, + [SMALL_STATE(1819)] = 61770, + [SMALL_STATE(1820)] = 61777, + [SMALL_STATE(1821)] = 61784, + [SMALL_STATE(1822)] = 61791, + [SMALL_STATE(1823)] = 61798, + [SMALL_STATE(1824)] = 61805, + [SMALL_STATE(1825)] = 61812, + [SMALL_STATE(1826)] = 61819, + [SMALL_STATE(1827)] = 61826, + [SMALL_STATE(1828)] = 61833, + [SMALL_STATE(1829)] = 61840, + [SMALL_STATE(1830)] = 61847, + [SMALL_STATE(1831)] = 61854, + [SMALL_STATE(1832)] = 61861, + [SMALL_STATE(1833)] = 61868, + [SMALL_STATE(1834)] = 61875, + [SMALL_STATE(1835)] = 61882, + [SMALL_STATE(1836)] = 61889, + [SMALL_STATE(1837)] = 61896, + [SMALL_STATE(1838)] = 61903, + [SMALL_STATE(1839)] = 61910, + [SMALL_STATE(1840)] = 61917, + [SMALL_STATE(1841)] = 61924, + [SMALL_STATE(1842)] = 61931, + [SMALL_STATE(1843)] = 61938, + [SMALL_STATE(1844)] = 61945, + [SMALL_STATE(1845)] = 61952, + [SMALL_STATE(1846)] = 61959, + [SMALL_STATE(1847)] = 61966, + [SMALL_STATE(1848)] = 61973, + [SMALL_STATE(1849)] = 61980, + [SMALL_STATE(1850)] = 61987, + [SMALL_STATE(1851)] = 61994, + [SMALL_STATE(1852)] = 62001, + [SMALL_STATE(1853)] = 62008, + [SMALL_STATE(1854)] = 62015, + [SMALL_STATE(1855)] = 62022, + [SMALL_STATE(1856)] = 62029, + [SMALL_STATE(1857)] = 62036, + [SMALL_STATE(1858)] = 62043, + [SMALL_STATE(1859)] = 62050, + [SMALL_STATE(1860)] = 62057, + [SMALL_STATE(1861)] = 62064, + [SMALL_STATE(1862)] = 62071, + [SMALL_STATE(1863)] = 62078, + [SMALL_STATE(1864)] = 62085, + [SMALL_STATE(1865)] = 62092, + [SMALL_STATE(1866)] = 62099, + [SMALL_STATE(1867)] = 62106, + [SMALL_STATE(1868)] = 62113, + [SMALL_STATE(1869)] = 62120, + [SMALL_STATE(1870)] = 62127, + [SMALL_STATE(1871)] = 62134, + [SMALL_STATE(1872)] = 62141, + [SMALL_STATE(1873)] = 62148, + [SMALL_STATE(1874)] = 62155, + [SMALL_STATE(1875)] = 62162, + [SMALL_STATE(1876)] = 62169, + [SMALL_STATE(1877)] = 62176, + [SMALL_STATE(1878)] = 62183, + [SMALL_STATE(1879)] = 62190, + [SMALL_STATE(1880)] = 62197, + [SMALL_STATE(1881)] = 62204, + [SMALL_STATE(1882)] = 62211, + [SMALL_STATE(1883)] = 62218, + [SMALL_STATE(1884)] = 62225, + [SMALL_STATE(1885)] = 62232, + [SMALL_STATE(1886)] = 62239, + [SMALL_STATE(1887)] = 62246, + [SMALL_STATE(1888)] = 62253, + [SMALL_STATE(1889)] = 62260, + [SMALL_STATE(1890)] = 62267, + [SMALL_STATE(1891)] = 62274, + [SMALL_STATE(1892)] = 62281, + [SMALL_STATE(1893)] = 62288, + [SMALL_STATE(1894)] = 62295, + [SMALL_STATE(1895)] = 62302, + [SMALL_STATE(1896)] = 62309, + [SMALL_STATE(1897)] = 62316, + [SMALL_STATE(1898)] = 62323, + [SMALL_STATE(1899)] = 62330, + [SMALL_STATE(1900)] = 62337, + [SMALL_STATE(1901)] = 62344, + [SMALL_STATE(1902)] = 62351, + [SMALL_STATE(1903)] = 62358, + [SMALL_STATE(1904)] = 62365, + [SMALL_STATE(1905)] = 62372, + [SMALL_STATE(1906)] = 62379, + [SMALL_STATE(1907)] = 62386, + [SMALL_STATE(1908)] = 62393, + [SMALL_STATE(1909)] = 62400, + [SMALL_STATE(1910)] = 62407, + [SMALL_STATE(1911)] = 62414, + [SMALL_STATE(1912)] = 62421, + [SMALL_STATE(1913)] = 62428, + [SMALL_STATE(1914)] = 62435, + [SMALL_STATE(1915)] = 62442, + [SMALL_STATE(1916)] = 62449, + [SMALL_STATE(1917)] = 62456, + [SMALL_STATE(1918)] = 62463, + [SMALL_STATE(1919)] = 62470, + [SMALL_STATE(1920)] = 62477, + [SMALL_STATE(1921)] = 62484, + [SMALL_STATE(1922)] = 62491, + [SMALL_STATE(1923)] = 62498, + [SMALL_STATE(1924)] = 62505, + [SMALL_STATE(1925)] = 62512, + [SMALL_STATE(1926)] = 62519, + [SMALL_STATE(1927)] = 62526, + [SMALL_STATE(1928)] = 62533, + [SMALL_STATE(1929)] = 62540, + [SMALL_STATE(1930)] = 62547, + [SMALL_STATE(1931)] = 62554, + [SMALL_STATE(1932)] = 62561, + [SMALL_STATE(1933)] = 62568, + [SMALL_STATE(1934)] = 62575, + [SMALL_STATE(1935)] = 62582, + [SMALL_STATE(1936)] = 62589, + [SMALL_STATE(1937)] = 62596, + [SMALL_STATE(1938)] = 62603, + [SMALL_STATE(1939)] = 62610, + [SMALL_STATE(1940)] = 62617, + [SMALL_STATE(1941)] = 62624, + [SMALL_STATE(1942)] = 62631, + [SMALL_STATE(1943)] = 62638, + [SMALL_STATE(1944)] = 62645, + [SMALL_STATE(1945)] = 62652, + [SMALL_STATE(1946)] = 62659, + [SMALL_STATE(1947)] = 62666, + [SMALL_STATE(1948)] = 62673, + [SMALL_STATE(1949)] = 62680, + [SMALL_STATE(1950)] = 62687, + [SMALL_STATE(1951)] = 62694, + [SMALL_STATE(1952)] = 62701, + [SMALL_STATE(1953)] = 62708, + [SMALL_STATE(1954)] = 62715, + [SMALL_STATE(1955)] = 62722, + [SMALL_STATE(1956)] = 62729, + [SMALL_STATE(1957)] = 62736, + [SMALL_STATE(1958)] = 62743, + [SMALL_STATE(1959)] = 62750, + [SMALL_STATE(1960)] = 62757, + [SMALL_STATE(1961)] = 62764, + [SMALL_STATE(1962)] = 62771, + [SMALL_STATE(1963)] = 62778, + [SMALL_STATE(1964)] = 62785, + [SMALL_STATE(1965)] = 62792, + [SMALL_STATE(1966)] = 62799, + [SMALL_STATE(1967)] = 62806, + [SMALL_STATE(1968)] = 62813, + [SMALL_STATE(1969)] = 62820, + [SMALL_STATE(1970)] = 62827, + [SMALL_STATE(1971)] = 62834, + [SMALL_STATE(1972)] = 62841, + [SMALL_STATE(1973)] = 62848, + [SMALL_STATE(1974)] = 62855, + [SMALL_STATE(1975)] = 62862, + [SMALL_STATE(1976)] = 62869, + [SMALL_STATE(1977)] = 62876, + [SMALL_STATE(1978)] = 62883, + [SMALL_STATE(1979)] = 62890, + [SMALL_STATE(1980)] = 62897, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -111516,2292 +112062,2292 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0, 0, 0), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), [169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 40), [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 40), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1659), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(976), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1657), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(529), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(529), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(893), [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(710), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(601), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(379), [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1808), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1809), [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1860), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1642), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(676), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1332), [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1795), [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(914), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(977), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(925), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(851), [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(26), [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1656), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(564), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(378), [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1927), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1178), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1907), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(864), [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(603), [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(380), [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1874), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1140), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1657), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(529), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(529), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(967), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(893), [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(710), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(513), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1860), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1659), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1669), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), + [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1642), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(676), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(384), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(976), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(710), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1657), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(529), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(529), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(379), [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1808), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1809), [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1860), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1642), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(676), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(404), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(244), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(967), [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1659), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1669), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(407), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(933), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(974), [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(380), [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1874), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(914), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(405), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(925), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(965), [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(26), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1656), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(378), [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 100), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 100), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 111), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 111), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 97), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 97), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 39), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 39), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 38), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 38), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 94), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 94), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 55), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 55), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 76), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 76), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 47), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 47), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 81), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 81), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 85), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 85), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 76), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 76), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 100), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 100), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 111), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 111), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 47), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 47), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 71), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 72), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 40), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 73), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, 0, 36), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 38), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 38), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 39), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 39), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 40), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 41), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 95), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 94), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 94), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 97), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 97), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 57), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(719), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(384), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(549), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(549), - [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(542), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(244), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1654), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(23), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1725), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1645), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(513), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1785), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1681), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(329), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1742), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(486), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1908), - [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1911), - [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1937), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1663), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1884), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(534), - [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(535), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1964), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1859), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1860), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1406), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(661), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1524), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1465), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(661), - [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(667), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(729), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(225), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(26), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1691), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1656), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(564), - [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1801), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1653), - [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(351), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1939), - [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(474), - [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1910), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1924), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1804), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1660), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1807), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(723), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(92), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(32), - [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1655), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1643), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(601), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1869), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1658), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(352), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1974), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(471), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1847), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1864), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1885), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1695), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1775), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(725), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1672), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(597), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1819), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1679), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1958), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1720), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(726), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(184), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1689), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1703), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(602), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1751), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1692), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(321), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1977), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(467), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1871), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1874), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1912), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1705), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1893), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 57), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(750), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(383), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(529), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(529), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(539), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(246), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1730), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(23), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1659), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1669), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(532), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1822), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1696), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(334), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1753), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(477), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1953), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1900), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1694), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1882), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(540), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(505), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1930), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1757), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1781), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1400), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(680), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1642), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1499), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(680), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(676), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(763), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(242), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(26), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1644), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1689), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(563), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1814), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1645), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(378), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1939), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(476), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1785), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1897), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1804), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1648), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1918), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(757), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(77), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(32), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1688), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1709), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(601), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1787), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1690), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(379), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1974), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(461), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1808), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1809), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1885), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1711), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1829), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(733), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1686), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(598), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1802), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1691), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1958), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1727), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(760), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(185), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1708), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1715), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(603), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1751), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1643), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(380), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1977), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(472), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1789), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1792), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1912), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1716), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1833), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1720] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(972), + [1720] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(956), [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(366), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(369), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1931), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(710), - [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 40), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 40), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1931), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1173), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), - [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1182), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), - [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 40), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 56), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 56), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(710), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(617), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 109), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 129), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 125), [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 120), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(710), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 106), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 45), [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 57), [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 57), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 69), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 45), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 30), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(972), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(777), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), - [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1949), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 80), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 52), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 52), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 52), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 78), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 80), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(956), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(730), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 50), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 52), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 41), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 79), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 72), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 40), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 73), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 97), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 42), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 70), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 96), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 42), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 79), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 40), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1744), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1949), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1949), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1949), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), - [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1949), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), SHIFT(1744), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1744), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 78), + [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 78), SHIFT(1744), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1744), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1633), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(930), - [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [2913] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(972), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(999), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1628), + [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(929), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [2914] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(956), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 77), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 77), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(993), + [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(992), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), + [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 44), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 115), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 116), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1127), - [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1111), - [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1117), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(728), - [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(728), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3312] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(728), - [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(728), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1128), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1108), - [3335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1107), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1113), - [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(728), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1934), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3251] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(722), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(722), + [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(722), + [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(722), + [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1109), + [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1099), + [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1111), + [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1103), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(722), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1102), + [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1108), + [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1101), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1869), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 42), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 40), [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1657), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), - [3653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1143), - [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [3659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 110), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 89), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [3647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), + [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 89), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 40), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 110), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 40), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 40), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 112), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 110), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 92), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 89), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 92), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 51), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 112), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 112), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 92), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 89), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 41), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 97), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 72), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 73), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 40), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 75), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 40), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 43), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 46), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1374), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1330), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1301), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1358), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [4238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1244), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(454), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1763), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1121), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), - [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), - [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(974), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 74), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 98), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 92), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 93), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 112), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 107), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 86), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 48), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), SHIFT_REPEAT(1347), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 127), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1241), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 86), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1373), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 117), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 107), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 118), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), + [4211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), + [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 101), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 48), + [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1308), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), + [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), SHIFT_REPEAT(1348), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 117), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 122), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 49), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 121), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 131), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), + [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 99), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 121), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 86), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1143), + [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), SHIFT_REPEAT(1827), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 130), + [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1127), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 126), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 131), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 123), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 118), + [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(653), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 128), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 86), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 113), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 123), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 49), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4710] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), - [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), - [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 41), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 97), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 73), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4736] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 97), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 41), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 73), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 41), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 97), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 97), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 41), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 97), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 72), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 72), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 72), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 73), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 72), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 73), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 40), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 72), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 73), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 41), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), }; #ifdef __cplusplus diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index e2e05e73..50731d36 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -1426,3 +1426,26 @@ foo(PRI "hello"); (identifier) (string_literal (string_content))))))) + +================================================================================ +Nonnull Type Qualifier +================================================================================ + +void foo() { + int *_Nonnull n; +} + +--- + +(translation_unit + (function_definition + (primitive_type) + (function_declarator + (identifier) + (parameter_list)) + (compound_statement + (declaration + (primitive_type) + (pointer_declarator + (type_qualifier) + (identifier))))))